diff --git a/.vscode/settings.json b/.vscode/settings.json index 478a3c863..f791b5751 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -49,6 +49,19 @@ "typeindex": "cpp", "typeinfo": "cpp", "utility": "cpp", - "variant": "cpp" + "variant": "cpp", + "gpuimagemacros.h": "c", + "math.hpp": "c", + "ref.hpp": "c", + "util.h": "c", + "math_utils.hpp": "c", + "condition_variable": "cpp", + "ctime": "cpp", + "mutex": "cpp", + "ratio": "cpp", + "semaphore": "cpp", + "stop_token": "cpp", + "thread": "cpp", + "target.hpp": "c" } } \ No newline at end of file diff --git a/mediapipe/render/core/BUILD b/mediapipe/render/core/BUILD index c666496d5..ac7d39ab2 100644 --- a/mediapipe/render/core/BUILD +++ b/mediapipe/render/core/BUILD @@ -120,7 +120,10 @@ OLARENDER_SRCS = [ "IOSTarget.cpp", "SourceCamera.cpp", "TargetView.cpp", - "FilterGroup.cpp" + "FilterGroup.cpp", + "dispatch_queue.cpp", + "GLThreadDispatch.cpp", + "OpipeDispatch.cpp", ] OLARENDER_HDRS = [ @@ -139,6 +142,9 @@ OLARENDER_HDRS = [ "SourceCamera.hpp", "TargetView.hpp", "FilterGroup.hpp", + "dispatch_queue.h", + "GLThreadDispatch.h", + "OpipeDispatch.hpp", ] diff --git a/mediapipe/render/core/CVFramebuffer.cpp b/mediapipe/render/core/CVFramebuffer.cpp index 3f2f5d683..90b3ccd6e 100644 --- a/mediapipe/render/core/CVFramebuffer.cpp +++ b/mediapipe/render/core/CVFramebuffer.cpp @@ -21,7 +21,7 @@ CVFramebuffer::CVFramebuffer(Context *context, int width, int height, const TextureAttributes textureAttributes, - GLuint textureId) : QImage::Framebuffer() + GLuint textureId) : Opipe::Framebuffer() { _context = context; useTextureCache = true; @@ -37,7 +37,7 @@ CVFramebuffer::CVFramebuffer(Context *context, int width, int height, bool onlyGenerateTexture/* = false*/, - const TextureAttributes textureAttributes) : QImage::Framebuffer() + const TextureAttributes textureAttributes) : Opipe::Framebuffer() { _context = context; useTextureCache = true; @@ -57,7 +57,7 @@ CVFramebuffer::CVFramebuffer(Context *context, CVFramebuffer::CVFramebuffer(Context *context, int width, int height, GLuint handle, IOSurfaceID surfaceID, - const TextureAttributes textureAttributes) : QImage::Framebuffer() { + const TextureAttributes textureAttributes) : Opipe::Framebuffer() { _context = context; useTextureCache = true; _width = width; @@ -352,7 +352,7 @@ void CVFramebuffer::_bindFramebuffer() { CHECK_GL(glBindTexture(GL_TEXTURE_2D, 0)); CHECK_GL(glBindFramebuffer(GL_FRAMEBUFFER, 0)); - // QImage::Log("Quaramera", "_generateFramebuffer %d ", _framebuffer); + // Opipe::Log("Quaramera", "_generateFramebuffer %d ", _framebuffer); assert(_framebuffer < 100); } diff --git a/mediapipe/render/core/CVFramebuffer.hpp b/mediapipe/render/core/CVFramebuffer.hpp index 4324ab5f1..ee27ebcf7 100644 --- a/mediapipe/render/core/CVFramebuffer.hpp +++ b/mediapipe/render/core/CVFramebuffer.hpp @@ -16,10 +16,10 @@ #include "Ref.hpp" #include "Framebuffer.hpp" -namespace QImage { +namespace Opipe { - class CVFramebuffer : public QImage::Framebuffer { + class CVFramebuffer : public Opipe::Framebuffer { public: CVFramebuffer(Context *context, int width, int height, diff --git a/mediapipe/render/core/Context.cpp b/mediapipe/render/core/Context.cpp index 381e77369..f4b6affdc 100755 --- a/mediapipe/render/core/Context.cpp +++ b/mediapipe/render/core/Context.cpp @@ -344,7 +344,7 @@ void Context::EAGLContext::useAsCurrent() #endif -const GLfloat * Context::textureCoordinatesForRotation(QImage::RotationMode rotationMode) +const GLfloat * Context::textureCoordinatesForRotation(Opipe::RotationMode rotationMode) { static const GLfloat noRotationTextureCoordinates[] = { 0.0f, 0.0f, diff --git a/mediapipe/render/core/Context.hpp b/mediapipe/render/core/Context.hpp index 8031f9ad1..12abf5e1e 100755 --- a/mediapipe/render/core/Context.hpp +++ b/mediapipe/render/core/Context.hpp @@ -53,7 +53,7 @@ public: void purge(); void cleanupFramebuffers(); - const GLfloat *textureCoordinatesForRotation(QImage::RotationMode rotationMode); + const GLfloat *textureCoordinatesForRotation(Opipe::RotationMode rotationMode); enum ContextType { diff --git a/mediapipe/render/core/Framebuffer.cpp b/mediapipe/render/core/Framebuffer.cpp index 4c5e63b16..897cf8ac5 100755 --- a/mediapipe/render/core/Framebuffer.cpp +++ b/mediapipe/render/core/Framebuffer.cpp @@ -27,7 +27,7 @@ #define useCVPB defined(__APPLE__) -namespace QImage { +namespace Opipe { TextureAttributes Framebuffer::defaultTextureAttribures = { .minFilter = GL_LINEAR, @@ -88,7 +88,7 @@ namespace QImage { if (isDealloc) { return; } - QImage::Log("Framebuffer", "delete Framebuffer(%d,%d) ", _width, _height); + Opipe::Log("Framebuffer", "delete Framebuffer(%d,%d) ", _width, _height); bool bDeleteTex = (_texture != -1); bool bDeleteFB = (_framebuffer != -1); @@ -229,7 +229,7 @@ namespace QImage { CHECK_GL(glBindTexture(GL_TEXTURE_2D, 0)); CHECK_GL(glBindFramebuffer(GL_FRAMEBUFFER, 0)); -// QImage::Log("QuarameraGL", "_generateFramebuffer %d ", _framebuffer); +// Opipe::Log("QuarameraGL", "_generateFramebuffer %d ", _framebuffer); } Context *Framebuffer::getContext() { diff --git a/mediapipe/render/core/FramebufferCache.hpp b/mediapipe/render/core/FramebufferCache.hpp index 55570b520..93476af2f 100755 --- a/mediapipe/render/core/FramebufferCache.hpp +++ b/mediapipe/render/core/FramebufferCache.hpp @@ -29,7 +29,7 @@ #else #define useCVFramebuffer false #endif -namespace QImage { +namespace Opipe { class Context; class FramebufferCache { diff --git a/mediapipe/render/core/GLProgram.cpp b/mediapipe/render/core/GLProgram.cpp index 93b6c924c..07a04551b 100755 --- a/mediapipe/render/core/GLProgram.cpp +++ b/mediapipe/render/core/GLProgram.cpp @@ -21,7 +21,7 @@ #include "Context.hpp" #include "GPUImageUtil.h" -namespace QImage { +namespace Opipe { //std::vector GLProgram::_context->_programs; @@ -89,8 +89,8 @@ namespace QImage { } else if (shaderType == GL_VERTEX_SHADER) { shaderTypeStr = std::string("GL_VERTEX_SHADER"); } - QImage::LogE("GPUImage-x", "LoadShader Could not compile shader type : %s \n because of %s", shaderTypeStr.c_str(), buf); - QImage::Log("GPUImage-x", "\n%s\n", pSource); + Opipe::LogE("GPUImage-x", "LoadShader Could not compile shader type : %s \n because of %s", shaderTypeStr.c_str(), buf); + Opipe::Log("GPUImage-x", "\n%s\n", pSource); free(buf); } CHECK_GL(glDeleteShader(shader)); @@ -132,7 +132,7 @@ namespace QImage { char *buf = (char *) malloc((size_t) bufLength); if (buf) { CHECK_GL(glGetProgramInfoLog(_program, bufLength, NULL, buf)); - QImage::LogE("GPUImage-x", "compile gl program error %s", buf); + Opipe::LogE("GPUImage-x", "compile gl program error %s", buf); free(buf); } } diff --git a/mediapipe/render/core/GLThreadDispatch.cpp b/mediapipe/render/core/GLThreadDispatch.cpp index b861f315d..d70fe648f 100644 --- a/mediapipe/render/core/GLThreadDispatch.cpp +++ b/mediapipe/render/core/GLThreadDispatch.cpp @@ -2,15 +2,11 @@ // Created by jormin on 2021/6/23. // -#if defined(__APPLE__) #include "GLThreadDispatch.h" -#else -#include "QStream/Dispatcher/GLThreadDispatch.h" -#endif #include -using namespace QStream; +using namespace Opipe; GLThreadDispatch::GLThreadDispatch(std::thread::id glThreadId, DispatchAsyncFunction dispatchAsyncFunction) : _glThreadId(glThreadId), _dispatchAsync(dispatchAsyncFunction) { diff --git a/mediapipe/render/core/GLThreadDispatch.h b/mediapipe/render/core/GLThreadDispatch.h new file mode 100644 index 000000000..64781a986 --- /dev/null +++ b/mediapipe/render/core/GLThreadDispatch.h @@ -0,0 +1,34 @@ +// +// Created by jormin on 2021/6/23. +// + +#ifndef OPIPE_GLTHREADDISPATCH_H +#define OPIPE_GLTHREADDISPATCH_H + + +#include "thread" + + +namespace Opipe { + + typedef std::function &func)> DispatchAsyncFunction; + + + class GLThreadDispatch { + + public: + GLThreadDispatch(std::thread::id glThreadId, DispatchAsyncFunction dispatchAsyncFunction); + + void runSync(void *host, std::function func); + + void runAsync(void *host, std::function func); + + private : + DispatchAsyncFunction _dispatchAsync = nullptr; + std::thread::id _glThreadId; + }; + +} + + +#endif //OPIPE_GLTHREADDISPATCH_H diff --git a/mediapipe/render/core/GPUImageMacros.h b/mediapipe/render/core/GPUImageMacros.h index be89aaf58..9b1577dbc 100755 --- a/mediapipe/render/core/GPUImageMacros.h +++ b/mediapipe/render/core/GPUImageMacros.h @@ -20,9 +20,9 @@ #define GPUImageMacros_h -#define NS_GI_BEGIN namespace QImage { +#define NS_GI_BEGIN namespace Opipe { #define NS_GI_END } -#define USING_NS_GI using namespace QImage; +#define USING_NS_GI using namespace Opipe; #define STRINGIZE(x) #x @@ -53,7 +53,7 @@ case GL_OUT_OF_MEMORY: errorString = "GL_OUT_OF_MEMORY"; break; \ default: break; \ } \ - QImage::Log("QuarameraGL", "GL ERROR 0x%04X %s in %s at line %i\n", e, \ + Opipe::Log("QuarameraGL", "GL ERROR 0x%04X %s in %s at line %i\n", e, \ errorString.c_str(), __PRETTY_FUNCTION__, __LINE__); \ assert(0);\ } \ diff --git a/mediapipe/render/core/GPUImageTarget.h b/mediapipe/render/core/GPUImageTarget.h index 8f6125a87..889761b93 100755 --- a/mediapipe/render/core/GPUImageTarget.h +++ b/mediapipe/render/core/GPUImageTarget.h @@ -24,7 +24,7 @@ @required - (void)update:(float)frameTime; -- (void)setInputFramebuffer:(QImage::Framebuffer*)inputFramebuffer withRotation:(QImage::RotationMode)rotationMode atIndex:(NSInteger)texIdx; +- (void)setInputFramebuffer:(Opipe::Framebuffer*)inputFramebuffer withRotation:(Opipe::RotationMode)rotationMode atIndex:(NSInteger)texIdx; @optional - (bool)isPrepared; - (void)unPrepared; diff --git a/mediapipe/render/core/GPUImageUtil.cpp b/mediapipe/render/core/GPUImageUtil.cpp index 75347dae6..077c59340 100755 --- a/mediapipe/render/core/GPUImageUtil.cpp +++ b/mediapipe/render/core/GPUImageUtil.cpp @@ -21,7 +21,7 @@ -namespace QImage { +namespace Opipe { __attribute__((no_sanitize("address", "memory"))) diff --git a/mediapipe/render/core/GPUImageUtil.h b/mediapipe/render/core/GPUImageUtil.h index 83c1c5e00..daa57a5a0 100755 --- a/mediapipe/render/core/GPUImageUtil.h +++ b/mediapipe/render/core/GPUImageUtil.h @@ -22,12 +22,12 @@ #include #include -namespace QImage { +namespace Opipe { std::string str_format(const char *fmt,...); void Log(const std::string& tag, const std::string& format, ...); void LogE(const std::string& tag, const std::string& format, ...); -#define rotationSwapsSize(rotation) ((rotation) == QImage::RotateLeft || (rotation) == QImage::RotateRight || (rotation) == QImage::RotateRightFlipVertical || (rotation) == QImage::RotateRightFlipHorizontal) +#define rotationSwapsSize(rotation) ((rotation) == Opipe::RotateLeft || (rotation) == Opipe::RotateRight || (rotation) == Opipe::RotateRightFlipVertical || (rotation) == Opipe::RotateRightFlipHorizontal) }; diff --git a/mediapipe/render/core/OpipeDispatch.cpp b/mediapipe/render/core/OpipeDispatch.cpp new file mode 100644 index 000000000..dbd9151e7 --- /dev/null +++ b/mediapipe/render/core/OpipeDispatch.cpp @@ -0,0 +1,157 @@ +// +// OpipeDispatch.cpp +// Quaramera +// +// Created by wangrenzhu2021 on 2021/12/14. +// Copyright © 2021 ola. All rights reserved. +// + +#define LOG_TAG "OpipeDispatch" + + +#include "dispatch_queue.h" + +#include "OpipeDispatch.hpp" + + +namespace Opipe { + + OpipeDispatch::OpipeDispatch(Opipe::Context *context, void *id, Opipe::GLThreadDispatch *glDispatch) : _context(context) { + _id = id; + _contextQueueIO = new dispatch_queue("quaramera_io"); + _contextQueueIO->dispatch_sync([&] { + _context->useAsCurrent(Opipe::Context::IOContext, true); + }); +#if defined(__APPLE__) + _contextQueue = new dispatch_queue("com.ola.glContextQueue"); + _contextQueue->dispatch_sync([&] + { + _context->useAsCurrent(Opipe::Context::GPUImageContext, true); + }); +#endif + + _contextQueueOffline = new dispatch_queue("quaramera_offline"); + _contextQueueOffline->dispatch_sync([&] { + _context->useAsCurrent(Opipe::Context::OfflineRenderContext, true); + }); + + _glThreadDispatch = glDispatch; + } + + OpipeDispatch::~OpipeDispatch() { + delete _contextQueueIO; + _contextQueueIO = 0; +#if defined(__APPLE__) + + delete _contextQueue; + _contextQueue = 0; +#endif + delete _contextQueueOffline; + _contextQueueOffline = 0; + + delete _glThreadDispatch; + _glThreadDispatch = 0; + } + + void OpipeDispatch::flushSharedInstance() { + this->runSync([&] {}); + this->runSync([&] {}, Opipe::Context::OfflineRenderContext); + this->runSync([&] {}, Opipe::Context::IOContext); + } + + void OpipeDispatch::runSync(std::function func, Opipe::Context::ContextType type /* = GPUImageContext*/) { + if (type == Opipe::Context::IOContext) { + if (_contextQueueIO->isCurrent()) { + _context->useAsCurrent(type); + func(); + } else { + _contextQueueIO->dispatch_sync([=] { + _context->useAsCurrent(type); + func(); + }); + } + } else if (type == Opipe::Context::OfflineRenderContext) { + if (_contextQueueOffline->isCurrent()) { + _context->useAsCurrent(type); + func(); + } else { + _contextQueueOffline->dispatch_sync([=] { + _context->useAsCurrent(type); + func(); + }); + } + } else { + + +#if defined(__APPLE__) + if (_contextQueue->isCurrent()) { + _context->useAsCurrent(type); + func(); + } + else { + _contextQueue->dispatch_sync([=]{ + _context->useAsCurrent(type); + func(); + }); + } +#else + //优先使用外部注入的实现 + if (_glThreadDispatch) { + _glThreadDispatch->runSync(_id, func); + return; + } else { + assert("not init gl_thread_dispatcher"); + } +#endif + } + } + + void OpipeDispatch::runAsync(std::function func, Opipe::Context::ContextType type /* = GPUImageContext*/, bool async/* = false*/) { + if (type == Opipe::Context::IOContext) { + if (!async && _contextQueueIO->isCurrent()) { + _context->useAsCurrent(type); + func(); + } else { + _contextQueueIO->dispatch_async([=] { + _context->useAsCurrent(type); + func(); + }); + } + } else if (type == Opipe::Context::OfflineRenderContext) { + if (!async && _contextQueueOffline->isCurrent()) { + _context->useAsCurrent(type); + func(); + } else { + _contextQueueOffline->dispatch_async([=] { + _context->useAsCurrent(type); + func(); + }); + } + } else { +#if defined(__APPLE__) + if (!async && _contextQueue->isCurrent()) + { + _context->useAsCurrent(type); + func(); + } + else + { + _contextQueue->dispatch_async([=]{ + _context->useAsCurrent(type); + func(); + }); + } +#else + + //优先使用外部注入的实现 + if (_glThreadDispatch) { + _glThreadDispatch->runAsync(_id, func); + return; + } else { + assert("not init gl_thread_dispatcher"); + } +#endif + } + } + +} diff --git a/mediapipe/render/core/OpipeDispatch.hpp b/mediapipe/render/core/OpipeDispatch.hpp new file mode 100644 index 000000000..75f24fce2 --- /dev/null +++ b/mediapipe/render/core/OpipeDispatch.hpp @@ -0,0 +1,54 @@ +// +// OpipeDispatch.hpp +// Quaramera +// +// Created by wangrenzhu2021 on 2021/12/14. +// Copyright © 2021 ola. All rights reserved. +// + +#ifndef OpipeDispatch_hpp +#define OpipeDispatch_hpp + +#include +#include + +#include "Context.hpp" +#include "GLThreadDispatch.h" + +class dispatch_queue; + +namespace Opipe { + class OpipeDispatch { + public: + void flushSharedInstance(); + + public: + void runSync(std::function func, Context::ContextType type = Context::GPUImageContext); + void runAsync(std::function func, Context::ContextType type = Context::GPUImageContext, + bool async = false); + + void setGLThreadDispatch(GLThreadDispatch *glDispatch){ + _glThreadDispatch = glDispatch; + } + + + OpipeDispatch(Context *context, + void *id = nullptr, + GLThreadDispatch *glDispatch = nullptr); + + ~OpipeDispatch(); + + private: + #if defined(__APPLE__) + dispatch_queue* _contextQueue; + #endif + dispatch_queue* _contextQueueOffline; + dispatch_queue* _contextQueueIO; + GLThreadDispatch* _glThreadDispatch = nullptr; + void* _id ; + public: + Context *_context; + }; +} + +#endif /* OpipeDispatch_hpp */ diff --git a/mediapipe/render/core/SourceCamera.cpp b/mediapipe/render/core/SourceCamera.cpp index 31507d592..e5cf0aabb 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, - QImage::RotationMode outputRotation, + Opipe::RotationMode outputRotation, SourceType sourceType, TextureAttributes textureAttributes) { //纹理发生变化,使用新的framebuffer diff --git a/mediapipe/render/core/SourceCamera.hpp b/mediapipe/render/core/SourceCamera.hpp index c60bf6193..5844ef862 100755 --- a/mediapipe/render/core/SourceCamera.hpp +++ b/mediapipe/render/core/SourceCamera.hpp @@ -46,17 +46,17 @@ public: virtual void setRenderTexture(GLuint texture, int width, int height, - QImage::RotationMode outputRotation = QImage::RotationMode::NoRotation, + Opipe::RotationMode outputRotation = Opipe::RotationMode::NoRotation, SourceType sourceType = SourceType_RGBA, - const QImage::TextureAttributes textureAttributes = QImage::Framebuffer::defaultTextureAttribures); + const Opipe::TextureAttributes textureAttributes = Opipe::Framebuffer::defaultTextureAttribures); #if defined(__APPLE__) virtual void setIORenderTexture(IOSurfaceID surfaceID, GLuint texture, int width, int height, - QImage::RotationMode outputRotation = QImage::RotationMode::NoRotation, + Opipe::RotationMode outputRotation = Opipe::RotationMode::NoRotation, SourceType sourceType = SourceType_RGBA, - const QImage::TextureAttributes textureAttributes = QImage::Framebuffer::defaultTextureAttribures); + const Opipe::TextureAttributes textureAttributes = Opipe::Framebuffer::defaultTextureAttribures); #endif diff --git a/mediapipe/render/core/Target.cpp b/mediapipe/render/core/Target.cpp index 4a34a203a..5dd741d0d 100755 --- a/mediapipe/render/core/Target.cpp +++ b/mediapipe/render/core/Target.cpp @@ -86,9 +86,6 @@ void Target::unPrepear() { it != _inputFramebuffers.end(); ++it) { if (!it->second.ignoreForPrepare) { if (it->second.frameBuffer && !it->second.frameBuffer->isDealloc) { - Log("Target", "%s 渲染完毕 准备Unlock InputFramebuffers:%s", - typeid(*this).name(), - it->second.frameBuffer->_hashCode.c_str()); it->second.frameBuffer->unlock(typeid(*this).name()); it->second.frameBuffer = 0; } diff --git a/mediapipe/render/ios/Camera/OlaMTLCameraRender.mm b/mediapipe/render/ios/Camera/OlaMTLCameraRender.mm index 232c4ed6c..e4a03b808 100644 --- a/mediapipe/render/ios/Camera/OlaMTLCameraRender.mm +++ b/mediapipe/render/ios/Camera/OlaMTLCameraRender.mm @@ -3,7 +3,7 @@ // // // Created by wangrenzhu on 2021/1/22. -// Copyright © 2021 alibaba. All rights reserved. +// Copyright © 2021 ola. All rights reserved. // #import #import diff --git a/mediapipe/render/ios/Camera/OlaShareTexture.m b/mediapipe/render/ios/Camera/OlaShareTexture.m index 061b6006f..1dc1b2928 100644 --- a/mediapipe/render/ios/Camera/OlaShareTexture.m +++ b/mediapipe/render/ios/Camera/OlaShareTexture.m @@ -3,7 +3,7 @@ // OlaCameraFramework // // Created by wangrenzhu on 2021/1/21. -// Copyright © 2021 alibaba. All rights reserved. +// Copyright © 2021 ola. All rights reserved. // #import "OlaShareTexture.h" diff --git a/mediapipe/render/module/beauty/BUILD b/mediapipe/render/module/beauty/BUILD index 0cbfd160b..cffd82e8f 100644 --- a/mediapipe/render/module/beauty/BUILD +++ b/mediapipe/render/module/beauty/BUILD @@ -1,7 +1,6 @@ package(default_visibility = ["//visibility:public"]) cc_library( name = "FaceMeshGPULibrary", - copts = ["-std=c++17"], srcs = [ "face_mesh_module.cc", "face_mesh_beauty_render.cc", @@ -35,6 +34,6 @@ cc_library( "-x objective-c++", "-fobjc-arc", # enable reference-counting ], - "//conditions:default": [], + "//conditions:default": ["-std=c++17"], }), ) diff --git a/mediapipe/render/module/beauty/face_mesh_beauty_render.cc b/mediapipe/render/module/beauty/face_mesh_beauty_render.cc index e69de29bb..54faade8d 100644 --- a/mediapipe/render/module/beauty/face_mesh_beauty_render.cc +++ b/mediapipe/render/module/beauty/face_mesh_beauty_render.cc @@ -0,0 +1 @@ +#include "face_mesh_beauty_render.h" \ No newline at end of file diff --git a/mediapipe/render/module/beauty/face_mesh_beauty_render.h b/mediapipe/render/module/beauty/face_mesh_beauty_render.h index e69de29bb..feed9ba31 100644 --- a/mediapipe/render/module/beauty/face_mesh_beauty_render.h +++ b/mediapipe/render/module/beauty/face_mesh_beauty_render.h @@ -0,0 +1,3 @@ +namespace Opipe { + +} \ No newline at end of file diff --git a/mediapipe/render/module/beauty/face_mesh_module.cc b/mediapipe/render/module/beauty/face_mesh_module.cc index 413d43c7a..d34080817 100644 --- a/mediapipe/render/module/beauty/face_mesh_module.cc +++ b/mediapipe/render/module/beauty/face_mesh_module.cc @@ -1,12 +1,24 @@ +#include "face_mesh_module.h" #include "face_mesh_module_imp.h" namespace Opipe { - FaceMeshModule::FaceMeshModule() { - - } + FaceMeshModule::~FaceMeshModule() { } + + FaceMeshModule::FaceMeshModule() { + + } + + FaceMeshModule* FaceMeshModule::create() { + FaceMeshModuleIMP *instance = new FaceMeshModuleIMP(); + return instance; + } + + + + } diff --git a/mediapipe/render/module/beauty/face_mesh_module.h b/mediapipe/render/module/beauty/face_mesh_module.h index dd1f8ac37..465025b28 100644 --- a/mediapipe/render/module/beauty/face_mesh_module.h +++ b/mediapipe/render/module/beauty/face_mesh_module.h @@ -1,9 +1,50 @@ +#ifndef OPIPE_FaceMeshModule +#define OPIPE_FaceMeshModule #include +#if defined(__APPLE__) +#import +#import +#import +#elif defined(__ANDROID__) || defined(ANDROID) +#include +#include +#endif -namespace Opipe { - class FaceMeshModule { - public: + +namespace Opipe +{ + class FaceMeshModule + { + public: FaceMeshModule(); - ~FaceMeshModule(); + virtual ~FaceMeshModule(); + + FaceMeshModule* create(); + + + // 暂停渲染 + virtual void suspend() = 0; + + // 恢复渲染 + virtual void resume() = 0; + + virtual bool init(void *env, void *binaryData, int size) = 0; + + virtual void startModule() = 0; + + virtual void stopModule() = 0; + + virtual GLuint renderTexture(GLuint textureId, int64_t timeStamp, int width, int height) = 0; + +#if defined(__APPLE__) + virtual void processVideoFrame(CVPixelBufferRef pixelbuffer, int64_t timeStamp) = 0; +#endif + + virtual void processVideoFrame(char *pixelbuffer, + int width, + int height, + int step, + int64_t timeStamp) = 0; }; } +#endif \ No newline at end of file diff --git a/mediapipe/render/module/beauty/face_mesh_module_imp.cc b/mediapipe/render/module/beauty/face_mesh_module_imp.cc index a50f83893..41f6a3859 100644 --- a/mediapipe/render/module/beauty/face_mesh_module_imp.cc +++ b/mediapipe/render/module/beauty/face_mesh_module_imp.cc @@ -1,12 +1,133 @@ -#include "mediapipe/render/core/Filter.hpp" -#include "face_mesh_module.hpp" +#include "face_mesh_module_imp.h" -namespace Opipe { - FaceMeshModuleIMP::FaceMeshModuleIMP() { - +namespace Opipe +{ + + FaceMeshCallFrameDelegate::FaceMeshCallFrameDelegate() + { } - - FaceMeshModuleIMP::~FaceMeshModuleIMP() { - + + FaceMeshCallFrameDelegate::~FaceMeshCallFrameDelegate() + { } -} \ No newline at end of file +#if defined(__APPLE__) + void FaceMeshCallFrameDelegate::outputPixelbuffer(OlaGraph *graph, CVPixelBufferRef pixelbuffer, + const std::string &streamName, int64_t timstamp) + { + + } +#endif + + void FaceMeshCallFrameDelegate::outputPacket(OlaGraph *graph, const mediapipe::Packet &packet, + MPPPacketType packetType, const std::string &streamName) + { + + } + + FaceMeshModuleIMP::FaceMeshModuleIMP() + { + } + + FaceMeshModuleIMP::~FaceMeshModuleIMP() + { + } + + void FaceMeshModuleIMP::suspend() + { + + } + + void FaceMeshModuleIMP::resume() + { + } + + bool FaceMeshModuleIMP::init(void *env, void *binaryData, + int size) + { + std::string graphName = "face_mesh_mobile_gpu"; + _delegate = std::make_shared(); + mediapipe::CalculatorGraphConfig config; + config.ParseFromArray(binaryData, size); + _context = std::make_unique(); + + #if defined(__ANDROID__) + _context->initEGLContext(env); + #endif + + _dispatch = std::make_unique(_context.get(), nullptr, nullptr); + + _graph = std::make_unique(config); + _graph->setDelegate(_delegate); + + return true; + } + + void FaceMeshModuleIMP::startModule() + { + if (!_isInit) + { + return; + } + _dispatch->runSync([&] { + _graph->start(); + }, Context::IOContext); + } + + void FaceMeshModuleIMP::stopModule() + { + if (!_isInit) + { + return; + } + _dispatch->runSync([&] { + _graph->setDelegate(nullptr); + _graph->cancel(); + _graph->closeAllInputStreams(); + _graph->waitUntilDone(); + }, Context::IOContext); + } + +#if defined(__APPLE__) + void FaceMeshModuleIMP::processVideoFrame(CVPixelBufferRef pixelbuffer, + int64_t timeStamp) + { + if (!_isInit) + { + return; + } + _dispatch->runAsync([&] { + Timestamp ts(timeStamp); + _graph->sendPixelBuffer(pixelbuffer, "input_video", + MPPPacketTypePixelBuffer, + ts); + }, Context::IOContext); + } +#endif + + void FaceMeshModuleIMP::processVideoFrame(char *pixelbuffer, + int width, + int height, + int step, + int64_t timeStamp) + { + if (!_isInit) + { + return; + } + } + + GLuint FaceMeshModuleIMP::renderTexture(GLuint textureId, + int64_t timeStamp, + int width, int height) + { + if (!_isInit) + { + return textureId; + } + _dispatch->runAsync([&] { + + }); + return textureId; + } + +} diff --git a/mediapipe/render/module/beauty/face_mesh_module_imp.h b/mediapipe/render/module/beauty/face_mesh_module_imp.h index e68cd0336..8841c2819 100644 --- a/mediapipe/render/module/beauty/face_mesh_module_imp.h +++ b/mediapipe/render/module/beauty/face_mesh_module_imp.h @@ -1,10 +1,62 @@ -#include "mediapipe/render/module/common/OlaGraph.hpp" -#include "mediapipe/render/module/beauty/face_mesh_module.h" +#include "mediapipe/render/module/common/ola_graph.h" +#include "mediapipe/render/core/OpipeDispatch.hpp" +#include "face_mesh_module.h" -namespace Opipe { - class FaceMeshModuleIMP : public FaceMeshModule { - public: +namespace Opipe +{ + class FaceMeshCallFrameDelegate : public MPPGraphDelegate + { + public: + FaceMeshCallFrameDelegate(); + ~FaceMeshCallFrameDelegate(); +#if defined(__APPLE__) + void outputPixelbuffer(OlaGraph *graph, CVPixelBufferRef pixelbuffer, + const std::string &streamName, int64_t timstamp) override; +#endif + void outputPacket(OlaGraph *graph, const mediapipe::Packet &packet, + MPPPacketType packetType, const std::string &streamName) override; + }; + + class FaceMeshModuleIMP : public FaceMeshModule + { + public: FaceMeshModuleIMP(); ~FaceMeshModuleIMP(); + + // 暂停渲染 + virtual void suspend() override; + + // 恢复渲染 + virtual void resume() override; + + // env iOS给空 + virtual bool init(void *env, void *binaryData, int size) override; + + virtual void startModule() override; + + virtual void stopModule() override; + +#if defined(__APPLE__) + + /// 算法流输入 + /// @param pixelbuffer pixelbuffer description + /// @param timeStamp timeStamp description + virtual void processVideoFrame(CVPixelBufferRef pixelbuffer, int64_t timeStamp) override; +#endif + + virtual void processVideoFrame(char *pixelbuffer, + int width, + int height, + int step, + int64_t timeStamp) override; + + virtual GLuint renderTexture(GLuint textureId, int64_t timeStamp, int width, int height) override; + + private: + std::unique_ptr _dispatch; + std::unique_ptr _graph; + std::unique_ptr _context; + bool _isInit = false; + std::shared_ptr _delegate; }; -} \ No newline at end of file +} diff --git a/mediapipe/render/module/beauty/ios/BUILD b/mediapipe/render/module/beauty/ios/BUILD index 10793e470..d53c484e7 100644 --- a/mediapipe/render/module/beauty/ios/BUILD +++ b/mediapipe/render/module/beauty/ios/BUILD @@ -19,7 +19,6 @@ objc_library( srcs = ["OlaFaceUnity.mm"], visibility = ["//visibility:public"], deps = [ - "//mediapipe/render/core:core-ios", "//mediapipe/render/module/beauty:FaceMeshGPULibrary", "@ios_opencv//:OpencvFramework", ], diff --git a/mediapipe/render/module/beauty/ios/OlaFaceUnity.h b/mediapipe/render/module/beauty/ios/OlaFaceUnity.h index e69de29bb..dd1812409 100644 --- a/mediapipe/render/module/beauty/ios/OlaFaceUnity.h +++ b/mediapipe/render/module/beauty/ios/OlaFaceUnity.h @@ -0,0 +1,6 @@ +#import + +@interface OlaFaceUnity : NSObject + + +@end \ No newline at end of file diff --git a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/bazel_build_settings.py b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/bazel_build_settings.py index fcc8c91a4..97b3ee3c6 100644 --- a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/bazel_build_settings.py +++ b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/bazel_build_settings.py @@ -144,15 +144,20 @@ BUILD_SETTINGS = BazelBuildSettings( '/private/var/tmp/_bazel_wangrenzhu/b244be861f40c753b454f38ce4e943dc', 'ios_arm64', { + 'ios_arm64': [ + '--apple_platform_type=ios', + '--cpu=ios_arm64', + '--watchos_cpus=armv7k,arm64_32', + ], + 'watchos_arm64_32': [ + '--apple_platform_type=watchos', + '--watchos_cpus=armv7k,arm64_32', + ], 'ios_sim_arm64': [ '--apple_platform_type=ios', '--cpu=ios_sim_arm64', '--watchos_cpus=armv7k', ], - 'macos_x86_64': [ - '--apple_platform_type=macos', - '--cpu=darwin_x86_64', - ], 'macos_arm64': [ '--apple_platform_type=macos', '--cpu=darwin_arm64', @@ -161,20 +166,36 @@ BUILD_SETTINGS = BazelBuildSettings( '--apple_platform_type=watchos', '--watchos_cpus=armv7k,arm64_32', ], - 'watchos_x86_64': [ - '--apple_platform_type=watchos', - '--watchos_cpus=i386', - ], - 'ios_arm64': [ - '--apple_platform_type=ios', - '--cpu=ios_arm64', - '--watchos_cpus=armv7k,arm64_32', + 'macos_x86_64': [ + '--apple_platform_type=macos', + '--cpu=darwin_x86_64', ], 'ios_x86_64': [ '--apple_platform_type=ios', '--cpu=ios_x86_64', '--watchos_cpus=i386', ], + 'macos_arm64e': [ + '--apple_platform_type=macos', + '--cpu=darwin_arm64e', + ], + 'tvos_x86_64': [ + '--apple_platform_type=tvos', + '--tvos_cpus=x86_64', + ], + 'ios_i386': [ + '--apple_platform_type=ios', + '--cpu=ios_i386', + '--watchos_cpus=i386', + ], + 'tvos_arm64': [ + '--apple_platform_type=tvos', + '--tvos_cpus=arm64', + ], + 'watchos_x86_64': [ + '--apple_platform_type=watchos', + '--watchos_cpus=i386', + ], 'ios_armv7': [ '--apple_platform_type=ios', '--cpu=ios_armv7', @@ -184,32 +205,11 @@ BUILD_SETTINGS = BazelBuildSettings( '--apple_platform_type=watchos', '--watchos_cpus=i386', ], - 'watchos_arm64_32': [ - '--apple_platform_type=watchos', - '--watchos_cpus=armv7k,arm64_32', - ], - 'tvos_arm64': [ - '--apple_platform_type=tvos', - '--tvos_cpus=arm64', - ], - 'tvos_x86_64': [ - '--apple_platform_type=tvos', - '--tvos_cpus=x86_64', - ], 'ios_arm64e': [ '--apple_platform_type=ios', '--cpu=ios_arm64e', '--watchos_cpus=armv7k,arm64_32', ], - 'macos_arm64e': [ - '--apple_platform_type=macos', - '--cpu=darwin_arm64e', - ], - 'ios_i386': [ - '--apple_platform_type=ios', - '--cpu=ios_i386', - '--watchos_cpus=i386', - ], }, set(), BazelFlagsSet( diff --git a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/project.pbxproj b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/project.pbxproj index 3183905e8..4b8b0ca15 100644 --- a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/project.pbxproj +++ b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/project.pbxproj @@ -7,1586 +7,1598 @@ objects = { /* Begin PBXBuildFile section */ - EC43C164024E437300000000 /* TargetView.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F024E437300000000 /* TargetView.cpp */; }; - EC43C164024E437300000001 /* TargetView.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F024E437300000000 /* TargetView.cpp */; }; - EC43C164024E437300000002 /* TargetView.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F024E437300000000 /* TargetView.cpp */; }; - EC43C164024E437300000003 /* TargetView.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F024E437300000000 /* TargetView.cpp */; }; - EC43C164043DD14B00000000 /* gpu_buffer_multi_pool.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F043DD14B00000000 /* gpu_buffer_multi_pool.cc */; }; - EC43C164043DD14B00000001 /* gpu_buffer_multi_pool.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F043DD14B00000000 /* gpu_buffer_multi_pool.cc */; }; - EC43C164054C67EB00000000 /* GPUImageUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F054C67EB00000000 /* GPUImageUtil.cpp */; }; - EC43C164054C67EB00000001 /* GPUImageUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F054C67EB00000000 /* GPUImageUtil.cpp */; }; - EC43C1640D075E6600000000 /* vec2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F0D075E6600000000 /* vec2.cpp */; }; - EC43C1640D075E6600000001 /* vec2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F0D075E6600000000 /* vec2.cpp */; }; - EC43C164115CC07300000000 /* Context.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F115CC07300000000 /* Context.cpp */; }; - EC43C164115CC07300000001 /* Context.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F115CC07300000000 /* Context.cpp */; }; - EC43C164115CC07300000002 /* Context.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F115CC07300000000 /* Context.cpp */; }; - EC43C164115CC07300000003 /* Context.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F115CC07300000000 /* Context.cpp */; }; - EC43C1641AF2345600000000 /* rectangle_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F1AF2345600000000 /* rectangle_util.cc */; }; - EC43C1641AF2345600000001 /* rectangle_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F1AF2345600000000 /* rectangle_util.cc */; }; - EC43C1641C1E706800000000 /* pixel_buffer_pool_util.mm in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F1C1E706800000000 /* pixel_buffer_pool_util.mm */; }; - EC43C1641C1E706800000001 /* pixel_buffer_pool_util.mm in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F1C1E706800000000 /* pixel_buffer_pool_util.mm */; }; - EC43C164216C8D5C00000000 /* gl_texture_view.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F216C8D5C00000000 /* gl_texture_view.cc */; }; - EC43C164216C8D5C00000001 /* gl_texture_view.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F216C8D5C00000000 /* gl_texture_view.cc */; }; - EC43C1642284465B00000000 /* annotation_overlay_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F2284465B00000000 /* annotation_overlay_calculator.cc */; }; - EC43C1642284465B00000001 /* annotation_overlay_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F2284465B00000000 /* annotation_overlay_calculator.cc */; }; - EC43C1642684427300000000 /* rect_transformation_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F2684427300000000 /* rect_transformation_calculator.cc */; }; - EC43C1642684427300000001 /* rect_transformation_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F2684427300000000 /* rect_transformation_calculator.cc */; }; - EC43C16429667CB800000000 /* clip_vector_size_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F29667CB800000000 /* clip_vector_size_calculator.cc */; }; - EC43C16429667CB800000001 /* clip_vector_size_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F29667CB800000000 /* clip_vector_size_calculator.cc */; }; - EC43C1642A43360700000000 /* Framebuffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F2A43360700000000 /* Framebuffer.cpp */; }; - EC43C1642A43360700000001 /* Framebuffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F2A43360700000000 /* Framebuffer.cpp */; }; - EC43C1642A43360700000002 /* Framebuffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F2A43360700000000 /* Framebuffer.cpp */; }; - EC43C1642A43360700000003 /* Framebuffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F2A43360700000000 /* Framebuffer.cpp */; }; - EC43C1642CE04EFD00000000 /* tensors_to_landmarks_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F2CE04EFD00000000 /* tensors_to_landmarks_calculator.cc */; }; - EC43C1642CE04EFD00000001 /* tensors_to_landmarks_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F2CE04EFD00000000 /* tensors_to_landmarks_calculator.cc */; }; - EC43C1642E6B486000000000 /* gpu_buffer_format.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F2E6B486000000000 /* gpu_buffer_format.cc */; }; - EC43C1642E6B486000000001 /* gpu_buffer_format.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F2E6B486000000000 /* gpu_buffer_format.cc */; }; - EC43C16430D1B2CD00000000 /* Target.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F30D1B2CD00000000 /* Target.cpp */; }; - EC43C16430D1B2CD00000001 /* Target.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F30D1B2CD00000000 /* Target.cpp */; }; - EC43C16430D1B2CD00000002 /* Target.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F30D1B2CD00000000 /* Target.cpp */; }; - EC43C16430D1B2CD00000003 /* Target.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F30D1B2CD00000000 /* Target.cpp */; }; - EC43C164350B780B00000000 /* face_mesh_module.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F350B780B00000000 /* face_mesh_module.cpp */; }; - EC43C164350B780B00000001 /* face_mesh_module.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F350B780B00000000 /* face_mesh_module.cpp */; }; - EC43C1643634749B00000000 /* previous_loopback_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F3634749B00000000 /* previous_loopback_calculator.cc */; }; - EC43C1643634749B00000001 /* previous_loopback_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F3634749B00000000 /* previous_loopback_calculator.cc */; }; - EC43C1643637376A00000000 /* image_to_tensor_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F3637376A00000000 /* image_to_tensor_calculator.cc */; }; - EC43C1643637376A00000001 /* image_to_tensor_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F3637376A00000000 /* image_to_tensor_calculator.cc */; }; - EC43C1643BCE8AD900000000 /* image_to_tensor_converter_opencv.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F3BCE8AD900000000 /* image_to_tensor_converter_opencv.cc */; }; - EC43C1643BCE8AD900000001 /* image_to_tensor_converter_opencv.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F3BCE8AD900000000 /* image_to_tensor_converter_opencv.cc */; }; - EC43C1643CC849C200000000 /* end_loop_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F3CC849C200000000 /* end_loop_calculator.cc */; }; - EC43C1643CC849C200000001 /* end_loop_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F3CC849C200000000 /* end_loop_calculator.cc */; }; - EC43C164425236D800000000 /* tensors_to_floats_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F425236D800000000 /* tensors_to_floats_calculator.cc */; }; - EC43C164425236D800000001 /* tensors_to_floats_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F425236D800000000 /* tensors_to_floats_calculator.cc */; }; - EC43C1644373C5BE00000000 /* math.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F4373C5BE00000000 /* math.cpp */; }; - EC43C1644373C5BE00000001 /* math.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F4373C5BE00000000 /* math.cpp */; }; - EC43C164439B269800000000 /* gl_simple_shaders.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F439B269800000000 /* gl_simple_shaders.cc */; }; - EC43C164439B269800000001 /* gl_simple_shaders.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F439B269800000000 /* gl_simple_shaders.cc */; }; - EC43C1644528D20000000000 /* constant_side_packet_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F4528D20000000000 /* constant_side_packet_calculator.cc */; }; - EC43C1644528D20000000001 /* constant_side_packet_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F4528D20000000000 /* constant_side_packet_calculator.cc */; }; - EC43C16446361A7400000000 /* Filter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F46361A7400000000 /* Filter.cpp */; }; - EC43C16446361A7400000001 /* Filter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F46361A7400000000 /* Filter.cpp */; }; - EC43C16446361A7400000002 /* Filter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F46361A7400000000 /* Filter.cpp */; }; - EC43C16446361A7400000003 /* Filter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F46361A7400000000 /* Filter.cpp */; }; - EC43C164466D956B00000000 /* max_pool_argmax.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F466D956B00000000 /* max_pool_argmax.cc */; }; - EC43C164466D956B00000001 /* max_pool_argmax.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F466D956B00000000 /* max_pool_argmax.cc */; }; - EC43C16446E8118200000000 /* tensors_to_detections_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F46E8118200000000 /* tensors_to_detections_calculator.cc */; }; - EC43C16446E8118200000001 /* tensors_to_detections_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F46E8118200000000 /* tensors_to_detections_calculator.cc */; }; - EC43C164485AE53400000000 /* MPPMetalHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F485AE53400000000 /* MPPMetalHelper.mm */; }; - EC43C164485AE53400000001 /* MPPMetalHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F485AE53400000000 /* MPPMetalHelper.mm */; }; - EC43C16448DF98DB00000000 /* inference_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F48DF98DB00000000 /* inference_calculator.cc */; }; - EC43C16448DF98DB00000001 /* inference_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F48DF98DB00000000 /* inference_calculator.cc */; }; - EC43C1644A333ECF00000000 /* gl_calculator_helper_impl_common.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F4A333ECF00000000 /* gl_calculator_helper_impl_common.cc */; }; - EC43C1644A333ECF00000001 /* gl_calculator_helper_impl_common.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F4A333ECF00000000 /* gl_calculator_helper_impl_common.cc */; }; - EC43C1644AC087AD00000000 /* MPPGraphGPUData.mm in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F4AC087AD00000000 /* MPPGraphGPUData.mm */; }; - EC43C1644AC087AD00000001 /* MPPGraphGPUData.mm in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F4AC087AD00000000 /* MPPGraphGPUData.mm */; }; - EC43C1644E6E1B1A00000000 /* vec4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F4E6E1B1A00000000 /* vec4.cpp */; }; - EC43C1644E6E1B1A00000001 /* vec4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F4E6E1B1A00000000 /* vec4.cpp */; }; - EC43C1644ECFA1D200000000 /* gl_calculator_helper.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F4ECFA1D200000000 /* gl_calculator_helper.cc */; }; - EC43C1644ECFA1D200000001 /* gl_calculator_helper.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F4ECFA1D200000000 /* gl_calculator_helper.cc */; }; - EC43C1644F3D133A00000000 /* local_file_contents_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F4F3D133A00000000 /* local_file_contents_calculator.cc */; }; - EC43C1644F3D133A00000001 /* local_file_contents_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F4F3D133A00000000 /* local_file_contents_calculator.cc */; }; - EC43C1644F7EA7CE00000000 /* cpu_op_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F4F7EA7CE00000000 /* cpu_op_resolver.cc */; }; - EC43C1644F7EA7CE00000001 /* cpu_op_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F4F7EA7CE00000000 /* cpu_op_resolver.cc */; }; - EC43C164512859F400000000 /* util.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F512859F400000000 /* util.cc */; }; - EC43C164512859F400000001 /* util.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F512859F400000000 /* util.cc */; }; - EC43C164553C1F9100000000 /* association_norm_rect_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F553C1F9100000000 /* association_norm_rect_calculator.cc */; }; - EC43C164553C1F9100000001 /* association_norm_rect_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F553C1F9100000000 /* association_norm_rect_calculator.cc */; }; - EC43C164567DD13A00000000 /* math_utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F567DD13A00000000 /* math_utils.cpp */; }; - EC43C164567DD13A00000001 /* math_utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F567DD13A00000000 /* math_utils.cpp */; }; - EC43C16456D28C4300000000 /* inference_calculator_cpu.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F56D28C4300000000 /* inference_calculator_cpu.cc */; }; - EC43C16456D28C4300000001 /* inference_calculator_cpu.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F56D28C4300000000 /* inference_calculator_cpu.cc */; }; - EC43C16457EF428E00000000 /* resource_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F57EF428E00000000 /* resource_util.cc */; }; - EC43C16457EF428E00000001 /* resource_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F57EF428E00000000 /* resource_util.cc */; }; - EC43C1645DA9AAF300000000 /* max_unpooling.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F5DA9AAF300000000 /* max_unpooling.cc */; }; - EC43C1645DA9AAF300000001 /* max_unpooling.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F5DA9AAF300000000 /* max_unpooling.cc */; }; - EC43C164610B41F300000000 /* tflite_custom_op_resolver_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F610B41F300000000 /* tflite_custom_op_resolver_calculator.cc */; }; - EC43C164610B41F300000001 /* tflite_custom_op_resolver_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F610B41F300000000 /* tflite_custom_op_resolver_calculator.cc */; }; - EC43C16461BCBB4F00000000 /* MPPMetalUtil.mm in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F61BCBB4F00000000 /* MPPMetalUtil.mm */; }; - EC43C16461BCBB4F00000001 /* MPPMetalUtil.mm in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F61BCBB4F00000000 /* MPPMetalUtil.mm */; }; - EC43C16462B6E69B00000000 /* collection_has_min_size_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F62B6E69B00000000 /* collection_has_min_size_calculator.cc */; }; - EC43C16462B6E69B00000001 /* collection_has_min_size_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F62B6E69B00000000 /* collection_has_min_size_calculator.cc */; }; - EC43C1646708DA9D00000000 /* annotation_renderer.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F6708DA9D00000000 /* annotation_renderer.cc */; }; - EC43C1646708DA9D00000001 /* annotation_renderer.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F6708DA9D00000000 /* annotation_renderer.cc */; }; - EC43C16467291D3100000000 /* header_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F67291D3100000000 /* header_util.cc */; }; - EC43C16467291D3100000001 /* header_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F67291D3100000000 /* header_util.cc */; }; - EC43C1646A77E38000000000 /* ssd_anchors_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F6A77E38000000000 /* ssd_anchors_calculator.cc */; }; - EC43C1646A77E38000000001 /* ssd_anchors_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F6A77E38000000000 /* ssd_anchors_calculator.cc */; }; - EC43C1646E0AB7DE00000000 /* MPPTimestampConverter.mm in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F6E0AB7DE00000000 /* MPPTimestampConverter.mm */; }; - EC43C1646E0AB7DE00000001 /* MPPTimestampConverter.mm in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F6E0AB7DE00000000 /* MPPTimestampConverter.mm */; }; - EC43C16472A6165000000000 /* landmarks_refinement_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F72A6165000000000 /* landmarks_refinement_calculator.cc */; }; - EC43C16472A6165000000001 /* landmarks_refinement_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F72A6165000000000 /* landmarks_refinement_calculator.cc */; }; - EC43C164730C61E800000000 /* landmarks_to_render_data_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F730C61E800000000 /* landmarks_to_render_data_calculator.cc */; }; - EC43C164730C61E800000001 /* landmarks_to_render_data_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F730C61E800000000 /* landmarks_to_render_data_calculator.cc */; }; - EC43C164731BD67000000000 /* FramebufferCache.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F731BD67000000000 /* FramebufferCache.cpp */; }; - EC43C164731BD67000000001 /* FramebufferCache.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F731BD67000000000 /* FramebufferCache.cpp */; }; - EC43C164731BD67000000002 /* FramebufferCache.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F731BD67000000000 /* FramebufferCache.cpp */; }; - EC43C164731BD67000000003 /* FramebufferCache.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F731BD67000000000 /* FramebufferCache.cpp */; }; - EC43C1647352B17300000000 /* Source.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F7352B17300000000 /* Source.cpp */; }; - EC43C1647352B17300000001 /* Source.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F7352B17300000000 /* Source.cpp */; }; - EC43C1647352B17300000002 /* Source.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F7352B17300000000 /* Source.cpp */; }; - EC43C1647352B17300000003 /* Source.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F7352B17300000000 /* Source.cpp */; }; - EC43C16473F96BB900000000 /* shader_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F73F96BB900000000 /* shader_util.cc */; }; - EC43C16473F96BB900000001 /* shader_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F73F96BB900000000 /* shader_util.cc */; }; - EC43C16474F94ED900000000 /* landmark_projection_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F74F94ED900000000 /* landmark_projection_calculator.cc */; }; - EC43C16474F94ED900000001 /* landmark_projection_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F74F94ED900000000 /* landmark_projection_calculator.cc */; }; - EC43C1647C7A404400000000 /* gl_context.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F7C7A404400000000 /* gl_context.cc */; }; - EC43C1647C7A404400000001 /* gl_context.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F7C7A404400000000 /* gl_context.cc */; }; - EC43C1647EA8AD8900000000 /* op_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F7EA8AD8900000000 /* op_resolver.cc */; }; - EC43C1647EA8AD8900000001 /* op_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F7EA8AD8900000000 /* op_resolver.cc */; }; - EC43C164815E3DC900000000 /* IOSTarget.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F815E3DC900000000 /* IOSTarget.cpp */; }; - EC43C164815E3DC900000001 /* IOSTarget.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F815E3DC900000000 /* IOSTarget.cpp */; }; - EC43C164815E3DC900000002 /* IOSTarget.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F815E3DC900000000 /* IOSTarget.cpp */; }; - EC43C164815E3DC900000003 /* IOSTarget.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F815E3DC900000000 /* IOSTarget.cpp */; }; - EC43C1648437B63D00000000 /* non_max_suppression_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F8437B63D00000000 /* non_max_suppression_calculator.cc */; }; - EC43C1648437B63D00000001 /* non_max_suppression_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F8437B63D00000000 /* non_max_suppression_calculator.cc */; }; - EC43C1648537330500000000 /* landmarks_to_transform_matrix.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F8537330500000000 /* landmarks_to_transform_matrix.cc */; }; - EC43C1648537330500000001 /* landmarks_to_transform_matrix.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F8537330500000000 /* landmarks_to_transform_matrix.cc */; }; - EC43C1648597B84200000000 /* callback_packet_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F8597B84200000000 /* callback_packet_calculator.cc */; }; - EC43C1648597B84200000001 /* callback_packet_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F8597B84200000000 /* callback_packet_calculator.cc */; }; - EC43C164861C82C600000000 /* begin_loop_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F861C82C600000000 /* begin_loop_calculator.cc */; }; - EC43C164861C82C600000001 /* begin_loop_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F861C82C600000000 /* begin_loop_calculator.cc */; }; - EC43C16487DFEA2300000000 /* OlaGraph.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F87DFEA2300000000 /* OlaGraph.cpp */; }; - EC43C16487DFEA2300000001 /* OlaGraph.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F87DFEA2300000000 /* OlaGraph.cpp */; }; - EC43C164884B993900000000 /* detections_to_rects_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F884B993900000000 /* detections_to_rects_calculator.cc */; }; - EC43C164884B993900000001 /* detections_to_rects_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F884B993900000000 /* detections_to_rects_calculator.cc */; }; - EC43C1648A2AAB7400000000 /* tflite_model_loader.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F8A2AAB7400000000 /* tflite_model_loader.cc */; }; - EC43C1648A2AAB7400000001 /* tflite_model_loader.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F8A2AAB7400000000 /* tflite_model_loader.cc */; }; - EC43C1648BBC9F7900000000 /* Ref.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F8BBC9F7900000000 /* Ref.cpp */; }; - EC43C1648BBC9F7900000001 /* Ref.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F8BBC9F7900000000 /* Ref.cpp */; }; - EC43C1648FE6AC8600000000 /* transform_tensor_bilinear.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F8FE6AC8600000000 /* transform_tensor_bilinear.cc */; }; - EC43C1648FE6AC8600000001 /* transform_tensor_bilinear.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F8FE6AC8600000000 /* transform_tensor_bilinear.cc */; }; - EC43C16492727CA000000000 /* gpu_service.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F92727CA000000000 /* gpu_service.cc */; }; - EC43C16492727CA000000001 /* gpu_service.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F92727CA000000000 /* gpu_service.cc */; }; - EC43C164941107A700000000 /* thresholding_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F941107A700000000 /* thresholding_calculator.cc */; }; - EC43C164941107A700000001 /* thresholding_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F941107A700000000 /* thresholding_calculator.cc */; }; - EC43C164969C674A00000000 /* mat4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F969C674A00000000 /* mat4.cpp */; }; - EC43C164969C674A00000001 /* mat4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F969C674A00000000 /* mat4.cpp */; }; - EC43C16497ED1FC700000000 /* gpu_buffer.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F97ED1FC700000000 /* gpu_buffer.cc */; }; - EC43C16497ED1FC700000001 /* gpu_buffer.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F97ED1FC700000000 /* gpu_buffer.cc */; }; - EC43C164994837E700000000 /* resource_util_apple.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F994837E700000000 /* resource_util_apple.cc */; }; - EC43C164994837E700000001 /* resource_util_apple.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97F994837E700000000 /* resource_util_apple.cc */; }; - EC43C164A1D1B51100000000 /* MPPGraph.mm in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FA1D1B51100000000 /* MPPGraph.mm */; }; - EC43C164A1D1B51100000001 /* MPPGraph.mm in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FA1D1B51100000000 /* MPPGraph.mm */; }; - EC43C164A23EAE8F00000000 /* NSError+util_status.mm in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FA23EAE8F00000000 /* NSError+util_status.mm */; }; - EC43C164A23EAE8F00000001 /* NSError+util_status.mm in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FA23EAE8F00000000 /* NSError+util_status.mm */; }; - EC43C164A42FD6CE00000000 /* transform_landmarks.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FA42FD6CE00000000 /* transform_landmarks.cc */; }; - EC43C164A42FD6CE00000001 /* transform_landmarks.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FA42FD6CE00000000 /* transform_landmarks.cc */; }; - EC43C164A54788E300000000 /* cpu_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FA54788E300000000 /* cpu_util.cc */; }; - EC43C164A54788E300000001 /* cpu_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FA54788E300000000 /* cpu_util.cc */; }; - EC43C164A60E9BF200000000 /* split_vector_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FA60E9BF200000000 /* split_vector_calculator.cc */; }; - EC43C164A60E9BF200000001 /* split_vector_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FA60E9BF200000000 /* split_vector_calculator.cc */; }; - EC43C164AAA2FE7000000000 /* gpu_buffer_storage.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FAAA2FE7000000000 /* gpu_buffer_storage.cc */; }; - EC43C164AAA2FE7000000001 /* gpu_buffer_storage.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FAAA2FE7000000000 /* gpu_buffer_storage.cc */; }; - EC43C164ADAE637800000000 /* to_image_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FADAE637800000000 /* to_image_calculator.cc */; }; - EC43C164ADAE637800000001 /* to_image_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FADAE637800000000 /* to_image_calculator.cc */; }; - EC43C164B51C03B400000000 /* landmarks_to_detection_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FB51C03B400000000 /* landmarks_to_detection_calculator.cc */; }; - EC43C164B51C03B400000001 /* landmarks_to_detection_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FB51C03B400000000 /* landmarks_to_detection_calculator.cc */; }; - EC43C164B77E32DB00000000 /* face_landmarks_to_render_data_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FB77E32DB00000000 /* face_landmarks_to_render_data_calculator.cc */; }; - EC43C164B77E32DB00000001 /* face_landmarks_to_render_data_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FB77E32DB00000000 /* face_landmarks_to_render_data_calculator.cc */; }; - EC43C164C2113DD500000000 /* transpose_conv_bias.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FC2113DD500000000 /* transpose_conv_bias.cc */; }; - EC43C164C2113DD500000001 /* transpose_conv_bias.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FC2113DD500000000 /* transpose_conv_bias.cc */; }; - EC43C164C4B69F3800000000 /* flow_limiter_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FC4B69F3800000000 /* flow_limiter_calculator.cc */; }; - EC43C164C4B69F3800000001 /* flow_limiter_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FC4B69F3800000000 /* flow_limiter_calculator.cc */; }; - EC43C164C6B713FC00000000 /* detections_to_render_data_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FC6B713FC00000000 /* detections_to_render_data_calculator.cc */; }; - EC43C164C6B713FC00000001 /* detections_to_render_data_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FC6B713FC00000000 /* detections_to_render_data_calculator.cc */; }; - EC43C164C905FCC400000000 /* gl_context_eagl.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FC905FCC400000000 /* gl_context_eagl.cc */; }; - EC43C164C905FCC400000001 /* gl_context_eagl.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FC905FCC400000000 /* gl_context_eagl.cc */; }; - EC43C164CD95B30F00000000 /* gate_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FCD95B30F00000000 /* gate_calculator.cc */; }; - EC43C164CD95B30F00000001 /* gate_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FCD95B30F00000000 /* gate_calculator.cc */; }; - EC43C164CEAD353700000000 /* gl_texture_buffer_pool.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FCEAD353700000000 /* gl_texture_buffer_pool.cc */; }; - EC43C164CEAD353700000001 /* gl_texture_buffer_pool.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FCEAD353700000000 /* gl_texture_buffer_pool.cc */; }; - EC43C164D02AC36400000000 /* vec3.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FD02AC36400000000 /* vec3.cpp */; }; - EC43C164D02AC36400000001 /* vec3.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FD02AC36400000000 /* vec3.cpp */; }; - EC43C164D11E82F000000000 /* rect_to_render_data_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FD11E82F000000000 /* rect_to_render_data_calculator.cc */; }; - EC43C164D11E82F000000001 /* rect_to_render_data_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FD11E82F000000000 /* rect_to_render_data_calculator.cc */; }; - EC43C164D3B4F92F00000000 /* gpu_shared_data_internal.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FD3B4F92F00000000 /* gpu_shared_data_internal.cc */; }; - EC43C164D3B4F92F00000001 /* gpu_shared_data_internal.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FD3B4F92F00000000 /* gpu_shared_data_internal.cc */; }; - EC43C164D57A06BE00000000 /* inference_calculator_metal.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FD57A06BE00000000 /* inference_calculator_metal.cc */; }; - EC43C164D57A06BE00000001 /* inference_calculator_metal.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FD57A06BE00000000 /* inference_calculator_metal.cc */; }; - EC43C164E04A951600000000 /* SourceImage.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FE04A951600000000 /* SourceImage.cpp */; }; - EC43C164E04A951600000001 /* SourceImage.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FE04A951600000000 /* SourceImage.cpp */; }; - EC43C164E04A951600000002 /* SourceImage.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FE04A951600000000 /* SourceImage.cpp */; }; - EC43C164E04A951600000003 /* SourceImage.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FE04A951600000000 /* SourceImage.cpp */; }; - EC43C164E5A048F400000000 /* OlaFaceUnity.mm in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FE5A048F400000000 /* OlaFaceUnity.mm */; }; - EC43C164E5A048F400000001 /* OlaFaceUnity.mm in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FE5A048F400000000 /* OlaFaceUnity.mm */; }; - EC43C164E8D550C300000000 /* GLProgram.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FE8D550C300000000 /* GLProgram.cpp */; }; - EC43C164E8D550C300000001 /* GLProgram.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FE8D550C300000000 /* GLProgram.cpp */; }; - EC43C164E8D550C300000002 /* GLProgram.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FE8D550C300000000 /* GLProgram.cpp */; }; - EC43C164E8D550C300000003 /* GLProgram.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FE8D550C300000000 /* GLProgram.cpp */; }; - EC43C164EB4C12EA00000000 /* tflite_model_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FEB4C12EA00000000 /* tflite_model_calculator.cc */; }; - EC43C164EB4C12EA00000001 /* tflite_model_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FEB4C12EA00000000 /* tflite_model_calculator.cc */; }; - EC43C164EBDBE6FA00000000 /* detection_projection_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FEBDBE6FA00000000 /* detection_projection_calculator.cc */; }; - EC43C164EBDBE6FA00000001 /* detection_projection_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FEBDBE6FA00000000 /* detection_projection_calculator.cc */; }; - EC43C164F2D261CD00000000 /* split_proto_list_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FF2D261CD00000000 /* split_proto_list_calculator.cc */; }; - EC43C164F2D261CD00000001 /* split_proto_list_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FF2D261CD00000000 /* split_proto_list_calculator.cc */; }; - EC43C164F31FC2AD00000000 /* image_to_tensor_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FF31FC2AD00000000 /* image_to_tensor_utils.cc */; }; - EC43C164F31FC2AD00000001 /* image_to_tensor_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FF31FC2AD00000000 /* image_to_tensor_utils.cc */; }; - EC43C164F382926900000000 /* SourceCamera.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FF382926900000000 /* SourceCamera.cpp */; }; - EC43C164F382926900000001 /* SourceCamera.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FF382926900000000 /* SourceCamera.cpp */; }; - EC43C164F382926900000002 /* SourceCamera.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FF382926900000000 /* SourceCamera.cpp */; }; - EC43C164F382926900000003 /* SourceCamera.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FF382926900000000 /* SourceCamera.cpp */; }; - EC43C164F8C96D3D00000000 /* gl_texture_buffer.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FF8C96D3D00000000 /* gl_texture_buffer.cc */; }; - EC43C164F8C96D3D00000001 /* gl_texture_buffer.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FF8C96D3D00000000 /* gl_texture_buffer.cc */; }; - EC43C164FAB2EC1300000000 /* FilterGroup.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FFAB2EC1300000000 /* FilterGroup.cpp */; }; - EC43C164FAB2EC1300000001 /* FilterGroup.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FFAB2EC1300000000 /* FilterGroup.cpp */; }; - EC43C164FAB2EC1300000002 /* FilterGroup.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FFAB2EC1300000000 /* FilterGroup.cpp */; }; - EC43C164FAB2EC1300000003 /* FilterGroup.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FFAB2EC1300000000 /* FilterGroup.cpp */; }; - EC43C164FBEF99EE00000000 /* image_to_tensor_converter_metal.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FFBEF99EE00000000 /* image_to_tensor_converter_metal.cc */; }; - EC43C164FBEF99EE00000001 /* image_to_tensor_converter_metal.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FFBEF99EE00000000 /* image_to_tensor_converter_metal.cc */; }; - EC43C164FCDA188900000000 /* gpu_buffer_storage_cv_pixel_buffer.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FFCDA188900000000 /* gpu_buffer_storage_cv_pixel_buffer.cc */; }; - EC43C164FCDA188900000001 /* gpu_buffer_storage_cv_pixel_buffer.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FFCDA188900000000 /* gpu_buffer_storage_cv_pixel_buffer.cc */; }; - EC43C164FD2C140F00000000 /* image_properties_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FFD2C140F00000000 /* image_properties_calculator.cc */; }; - EC43C164FD2C140F00000001 /* image_properties_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED7A97FFD2C140F00000000 /* image_properties_calculator.cc */; }; + 49B7A4FC0156E7A600000000 /* vec2.cpp in math */ = {isa = PBXBuildFile; fileRef = 8F62469E0156E7A600000000 /* vec2.cpp */; }; + 49B7A4FC0156E7A600000001 /* vec2.cpp in math */ = {isa = PBXBuildFile; fileRef = 8F62469E0156E7A600000000 /* vec2.cpp */; }; + 49B7A4FC0592E24D00000000 /* mat4.cpp in math */ = {isa = PBXBuildFile; fileRef = 8F62469E0592E24D00000000 /* mat4.cpp */; }; + 49B7A4FC0592E24D00000001 /* mat4.cpp in math */ = {isa = PBXBuildFile; fileRef = 8F62469E0592E24D00000000 /* mat4.cpp */; }; + 49B7A4FC096C09DF00000000 /* transform_landmarks.cc in operations */ = {isa = PBXBuildFile; fileRef = 8F62469E096C09DF00000000 /* transform_landmarks.cc */; }; + 49B7A4FC096C09DF00000001 /* transform_landmarks.cc in operations */ = {isa = PBXBuildFile; fileRef = 8F62469E096C09DF00000000 /* transform_landmarks.cc */; }; + 49B7A4FC0C5B6D7000000000 /* non_max_suppression_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E0C5B6D7000000000 /* non_max_suppression_calculator.cc */; }; + 49B7A4FC0C5B6D7000000001 /* non_max_suppression_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E0C5B6D7000000000 /* non_max_suppression_calculator.cc */; }; + 49B7A4FC13423C4400000000 /* landmarks_to_detection_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E13423C4400000000 /* landmarks_to_detection_calculator.cc */; }; + 49B7A4FC13423C4400000001 /* landmarks_to_detection_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E13423C4400000000 /* landmarks_to_detection_calculator.cc */; }; + 49B7A4FC134BBB5F00000000 /* inference_calculator_metal.cc in tensor */ = {isa = PBXBuildFile; fileRef = 8F62469E134BBB5F00000000 /* inference_calculator_metal.cc */; }; + 49B7A4FC134BBB5F00000001 /* inference_calculator_metal.cc in tensor */ = {isa = PBXBuildFile; fileRef = 8F62469E134BBB5F00000000 /* inference_calculator_metal.cc */; }; + 49B7A4FC1370E16B00000000 /* cpu_op_resolver.cc in tflite */ = {isa = PBXBuildFile; fileRef = 8F62469E1370E16B00000000 /* cpu_op_resolver.cc */; }; + 49B7A4FC1370E16B00000001 /* cpu_op_resolver.cc in tflite */ = {isa = PBXBuildFile; fileRef = 8F62469E1370E16B00000000 /* cpu_op_resolver.cc */; }; + 49B7A4FC18FF939300000000 /* split_vector_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 8F62469E18FF939300000000 /* split_vector_calculator.cc */; }; + 49B7A4FC18FF939300000001 /* split_vector_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 8F62469E18FF939300000000 /* split_vector_calculator.cc */; }; + 49B7A4FC1AA4F1AC00000000 /* gl_simple_shaders.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E1AA4F1AC00000000 /* gl_simple_shaders.cc */; }; + 49B7A4FC1AA4F1AC00000001 /* gl_simple_shaders.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E1AA4F1AC00000000 /* gl_simple_shaders.cc */; }; + 49B7A4FC1E08E4F200000000 /* annotation_renderer.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E1E08E4F200000000 /* annotation_renderer.cc */; }; + 49B7A4FC1E08E4F200000001 /* annotation_renderer.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E1E08E4F200000000 /* annotation_renderer.cc */; }; + 49B7A4FC225F8AC300000000 /* callback_packet_calculator.cc in internal */ = {isa = PBXBuildFile; fileRef = 8F62469E225F8AC300000000 /* callback_packet_calculator.cc */; }; + 49B7A4FC225F8AC300000001 /* callback_packet_calculator.cc in internal */ = {isa = PBXBuildFile; fileRef = 8F62469E225F8AC300000000 /* callback_packet_calculator.cc */; }; + 49B7A4FC259898F600000000 /* rect_to_render_data_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E259898F600000000 /* rect_to_render_data_calculator.cc */; }; + 49B7A4FC259898F600000001 /* rect_to_render_data_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E259898F600000000 /* rect_to_render_data_calculator.cc */; }; + 49B7A4FC267D173700000000 /* constant_side_packet_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 8F62469E267D173700000000 /* constant_side_packet_calculator.cc */; }; + 49B7A4FC267D173700000001 /* constant_side_packet_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 8F62469E267D173700000000 /* constant_side_packet_calculator.cc */; }; + 49B7A4FC29F2D5B300000000 /* inference_calculator_cpu.cc in tensor */ = {isa = PBXBuildFile; fileRef = 8F62469E29F2D5B300000000 /* inference_calculator_cpu.cc */; }; + 49B7A4FC29F2D5B300000001 /* inference_calculator_cpu.cc in tensor */ = {isa = PBXBuildFile; fileRef = 8F62469E29F2D5B300000000 /* inference_calculator_cpu.cc */; }; + 49B7A4FC2CF83E7600000000 /* image_to_tensor_utils.cc in tensor */ = {isa = PBXBuildFile; fileRef = 8F62469E2CF83E7600000000 /* image_to_tensor_utils.cc */; }; + 49B7A4FC2CF83E7600000001 /* image_to_tensor_utils.cc in tensor */ = {isa = PBXBuildFile; fileRef = 8F62469E2CF83E7600000000 /* image_to_tensor_utils.cc */; }; + 49B7A4FC2E87CC4E00000000 /* Target.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E2E87CC4E00000000 /* Target.cpp */; }; + 49B7A4FC2E87CC4E00000001 /* Target.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E2E87CC4E00000000 /* Target.cpp */; }; + 49B7A4FC2E87CC4E00000002 /* Target.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E2E87CC4E00000000 /* Target.cpp */; }; + 49B7A4FC2E87CC4E00000003 /* Target.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E2E87CC4E00000000 /* Target.cpp */; }; + 49B7A4FC2E9744D600000000 /* gpu_buffer_storage.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E2E9744D600000000 /* gpu_buffer_storage.cc */; }; + 49B7A4FC2E9744D600000001 /* gpu_buffer_storage.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E2E9744D600000000 /* gpu_buffer_storage.cc */; }; + 49B7A4FC2F39A2D500000000 /* gpu_buffer_multi_pool.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E2F39A2D500000000 /* gpu_buffer_multi_pool.cc */; }; + 49B7A4FC2F39A2D500000001 /* gpu_buffer_multi_pool.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E2F39A2D500000000 /* gpu_buffer_multi_pool.cc */; }; + 49B7A4FC357DD06500000000 /* pixel_buffer_pool_util.mm in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E357DD06500000000 /* pixel_buffer_pool_util.mm */; }; + 49B7A4FC357DD06500000001 /* pixel_buffer_pool_util.mm in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E357DD06500000000 /* pixel_buffer_pool_util.mm */; }; + 49B7A4FC369A201C00000000 /* shader_util.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E369A201C00000000 /* shader_util.cc */; }; + 49B7A4FC369A201C00000001 /* shader_util.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E369A201C00000000 /* shader_util.cc */; }; + 49B7A4FC36A1BCF500000000 /* FilterGroup.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E36A1BCF500000000 /* FilterGroup.cpp */; }; + 49B7A4FC36A1BCF500000001 /* FilterGroup.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E36A1BCF500000000 /* FilterGroup.cpp */; }; + 49B7A4FC36A1BCF500000002 /* FilterGroup.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E36A1BCF500000000 /* FilterGroup.cpp */; }; + 49B7A4FC36A1BCF500000003 /* FilterGroup.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E36A1BCF500000000 /* FilterGroup.cpp */; }; + 49B7A4FC3950B88400000000 /* GPUImageUtil.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E3950B88400000000 /* GPUImageUtil.cpp */; }; + 49B7A4FC3950B88400000001 /* GPUImageUtil.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E3950B88400000000 /* GPUImageUtil.cpp */; }; + 49B7A4FC3EF5E91200000000 /* transform_tensor_bilinear.cc in operations */ = {isa = PBXBuildFile; fileRef = 8F62469E3EF5E91200000000 /* transform_tensor_bilinear.cc */; }; + 49B7A4FC3EF5E91200000001 /* transform_tensor_bilinear.cc in operations */ = {isa = PBXBuildFile; fileRef = 8F62469E3EF5E91200000000 /* transform_tensor_bilinear.cc */; }; + 49B7A4FC3FEF732500000000 /* header_util.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E3FEF732500000000 /* header_util.cc */; }; + 49B7A4FC3FEF732500000001 /* header_util.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E3FEF732500000000 /* header_util.cc */; }; + 49B7A4FC403A0ACA00000000 /* Source.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E403A0ACA00000000 /* Source.cpp */; }; + 49B7A4FC403A0ACA00000001 /* Source.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E403A0ACA00000000 /* Source.cpp */; }; + 49B7A4FC403A0ACA00000002 /* Source.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E403A0ACA00000000 /* Source.cpp */; }; + 49B7A4FC403A0ACA00000003 /* Source.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E403A0ACA00000000 /* Source.cpp */; }; + 49B7A4FC42538A8300000000 /* FramebufferCache.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E42538A8300000000 /* FramebufferCache.cpp */; }; + 49B7A4FC42538A8300000001 /* FramebufferCache.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E42538A8300000000 /* FramebufferCache.cpp */; }; + 49B7A4FC42538A8300000002 /* FramebufferCache.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E42538A8300000000 /* FramebufferCache.cpp */; }; + 49B7A4FC42538A8300000003 /* FramebufferCache.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E42538A8300000000 /* FramebufferCache.cpp */; }; + 49B7A4FC489C692A00000000 /* gpu_buffer_storage_cv_pixel_buffer.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E489C692A00000000 /* gpu_buffer_storage_cv_pixel_buffer.cc */; }; + 49B7A4FC489C692A00000001 /* gpu_buffer_storage_cv_pixel_buffer.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E489C692A00000000 /* gpu_buffer_storage_cv_pixel_buffer.cc */; }; + 49B7A4FC48E4E18100000000 /* MPPTimestampConverter.mm in objc */ = {isa = PBXBuildFile; fileRef = 8F62469E48E4E18100000000 /* MPPTimestampConverter.mm */; }; + 49B7A4FC48E4E18100000001 /* MPPTimestampConverter.mm in objc */ = {isa = PBXBuildFile; fileRef = 8F62469E48E4E18100000000 /* MPPTimestampConverter.mm */; }; + 49B7A4FC4AFAD92200000000 /* gl_context_eagl.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E4AFAD92200000000 /* gl_context_eagl.cc */; }; + 49B7A4FC4AFAD92200000001 /* gl_context_eagl.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E4AFAD92200000000 /* gl_context_eagl.cc */; }; + 49B7A4FC4C094F0A00000000 /* util.cc in objc */ = {isa = PBXBuildFile; fileRef = 8F62469E4C094F0A00000000 /* util.cc */; }; + 49B7A4FC4C094F0A00000001 /* util.cc in objc */ = {isa = PBXBuildFile; fileRef = 8F62469E4C094F0A00000000 /* util.cc */; }; + 49B7A4FC4CC6C91400000000 /* face_mesh_module.cc in beauty */ = {isa = PBXBuildFile; fileRef = 8F62469E4CC6C91400000000 /* face_mesh_module.cc */; }; + 49B7A4FC4CC6C91400000001 /* face_mesh_module.cc in beauty */ = {isa = PBXBuildFile; fileRef = 8F62469E4CC6C91400000000 /* face_mesh_module.cc */; }; + 49B7A4FC4CCA495100000000 /* SourceImage.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E4CCA495100000000 /* SourceImage.cpp */; }; + 49B7A4FC4CCA495100000001 /* SourceImage.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E4CCA495100000000 /* SourceImage.cpp */; }; + 49B7A4FC4CCA495100000002 /* SourceImage.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E4CCA495100000000 /* SourceImage.cpp */; }; + 49B7A4FC4CCA495100000003 /* SourceImage.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E4CCA495100000000 /* SourceImage.cpp */; }; + 49B7A4FC50FA3B1400000000 /* tflite_model_calculator.cc in tflite */ = {isa = PBXBuildFile; fileRef = 8F62469E50FA3B1400000000 /* tflite_model_calculator.cc */; }; + 49B7A4FC50FA3B1400000001 /* tflite_model_calculator.cc in tflite */ = {isa = PBXBuildFile; fileRef = 8F62469E50FA3B1400000000 /* tflite_model_calculator.cc */; }; + 49B7A4FC53BB6A1B00000000 /* clip_vector_size_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 8F62469E53BB6A1B00000000 /* clip_vector_size_calculator.cc */; }; + 49B7A4FC53BB6A1B00000001 /* clip_vector_size_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 8F62469E53BB6A1B00000000 /* clip_vector_size_calculator.cc */; }; + 49B7A4FC53F441A800000000 /* cpu_util.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E53F441A800000000 /* cpu_util.cc */; }; + 49B7A4FC53F441A800000001 /* cpu_util.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E53F441A800000000 /* cpu_util.cc */; }; + 49B7A4FC549B74DB00000000 /* image_to_tensor_calculator.cc in tensor */ = {isa = PBXBuildFile; fileRef = 8F62469E549B74DB00000000 /* image_to_tensor_calculator.cc */; }; + 49B7A4FC549B74DB00000001 /* image_to_tensor_calculator.cc in tensor */ = {isa = PBXBuildFile; fileRef = 8F62469E549B74DB00000000 /* image_to_tensor_calculator.cc */; }; + 49B7A4FC5771EFBD00000000 /* Framebuffer.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E5771EFBD00000000 /* Framebuffer.cpp */; }; + 49B7A4FC5771EFBD00000001 /* Framebuffer.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E5771EFBD00000000 /* Framebuffer.cpp */; }; + 49B7A4FC5771EFBD00000002 /* Framebuffer.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E5771EFBD00000000 /* Framebuffer.cpp */; }; + 49B7A4FC5771EFBD00000003 /* Framebuffer.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E5771EFBD00000000 /* Framebuffer.cpp */; }; + 49B7A4FC57CDD24300000000 /* ssd_anchors_calculator.cc in tflite */ = {isa = PBXBuildFile; fileRef = 8F62469E57CDD24300000000 /* ssd_anchors_calculator.cc */; }; + 49B7A4FC57CDD24300000001 /* ssd_anchors_calculator.cc in tflite */ = {isa = PBXBuildFile; fileRef = 8F62469E57CDD24300000000 /* ssd_anchors_calculator.cc */; }; + 49B7A4FC5D4491B500000000 /* resource_util.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E5D4491B500000000 /* resource_util.cc */; }; + 49B7A4FC5D4491B500000001 /* resource_util.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E5D4491B500000000 /* resource_util.cc */; }; + 49B7A4FC60EAFF9D00000000 /* rectangle_util.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E60EAFF9D00000000 /* rectangle_util.cc */; }; + 49B7A4FC60EAFF9D00000001 /* rectangle_util.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E60EAFF9D00000000 /* rectangle_util.cc */; }; + 49B7A4FC61F8D8DE00000000 /* detection_projection_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E61F8D8DE00000000 /* detection_projection_calculator.cc */; }; + 49B7A4FC61F8D8DE00000001 /* detection_projection_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E61F8D8DE00000000 /* detection_projection_calculator.cc */; }; + 49B7A4FC6328969D00000000 /* Context.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E6328969D00000000 /* Context.cpp */; }; + 49B7A4FC6328969D00000001 /* Context.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E6328969D00000000 /* Context.cpp */; }; + 49B7A4FC6328969D00000002 /* Context.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E6328969D00000000 /* Context.cpp */; }; + 49B7A4FC6328969D00000003 /* Context.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E6328969D00000000 /* Context.cpp */; }; + 49B7A4FC635CAFD500000000 /* image_to_tensor_converter_metal.cc in tensor */ = {isa = PBXBuildFile; fileRef = 8F62469E635CAFD500000000 /* image_to_tensor_converter_metal.cc */; }; + 49B7A4FC635CAFD500000001 /* image_to_tensor_converter_metal.cc in tensor */ = {isa = PBXBuildFile; fileRef = 8F62469E635CAFD500000000 /* image_to_tensor_converter_metal.cc */; }; + 49B7A4FC6414206900000000 /* tensors_to_detections_calculator.cc in tensor */ = {isa = PBXBuildFile; fileRef = 8F62469E6414206900000000 /* tensors_to_detections_calculator.cc */; }; + 49B7A4FC6414206900000001 /* tensors_to_detections_calculator.cc in tensor */ = {isa = PBXBuildFile; fileRef = 8F62469E6414206900000000 /* tensors_to_detections_calculator.cc */; }; + 49B7A4FC64A7F94D00000000 /* math.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E64A7F94D00000000 /* math.cpp */; }; + 49B7A4FC64A7F94D00000001 /* math.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E64A7F94D00000000 /* math.cpp */; }; + 49B7A4FC69D807EA00000000 /* to_image_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E69D807EA00000000 /* to_image_calculator.cc */; }; + 49B7A4FC69D807EA00000001 /* to_image_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E69D807EA00000000 /* to_image_calculator.cc */; }; + 49B7A4FC6D2A8B0300000000 /* rect_transformation_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E6D2A8B0300000000 /* rect_transformation_calculator.cc */; }; + 49B7A4FC6D2A8B0300000001 /* rect_transformation_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E6D2A8B0300000000 /* rect_transformation_calculator.cc */; }; + 49B7A4FC7079047800000000 /* flow_limiter_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 8F62469E7079047800000000 /* flow_limiter_calculator.cc */; }; + 49B7A4FC7079047800000001 /* flow_limiter_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 8F62469E7079047800000000 /* flow_limiter_calculator.cc */; }; + 49B7A4FC7A9963A400000000 /* vec4.cpp in math */ = {isa = PBXBuildFile; fileRef = 8F62469E7A9963A400000000 /* vec4.cpp */; }; + 49B7A4FC7A9963A400000001 /* vec4.cpp in math */ = {isa = PBXBuildFile; fileRef = 8F62469E7A9963A400000000 /* vec4.cpp */; }; + 49B7A4FC7B0088E300000000 /* begin_loop_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 8F62469E7B0088E300000000 /* begin_loop_calculator.cc */; }; + 49B7A4FC7B0088E300000001 /* begin_loop_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 8F62469E7B0088E300000000 /* begin_loop_calculator.cc */; }; + 49B7A4FC7D7F06EB00000000 /* image_properties_calculator.cc in image */ = {isa = PBXBuildFile; fileRef = 8F62469E7D7F06EB00000000 /* image_properties_calculator.cc */; }; + 49B7A4FC7D7F06EB00000001 /* image_properties_calculator.cc in image */ = {isa = PBXBuildFile; fileRef = 8F62469E7D7F06EB00000000 /* image_properties_calculator.cc */; }; + 49B7A4FC7FAD39F900000000 /* vec3.cpp in math */ = {isa = PBXBuildFile; fileRef = 8F62469E7FAD39F900000000 /* vec3.cpp */; }; + 49B7A4FC7FAD39F900000001 /* vec3.cpp in math */ = {isa = PBXBuildFile; fileRef = 8F62469E7FAD39F900000000 /* vec3.cpp */; }; + 49B7A4FC8369D9F900000000 /* tflite_model_loader.cc in tflite */ = {isa = PBXBuildFile; fileRef = 8F62469E8369D9F900000000 /* tflite_model_loader.cc */; }; + 49B7A4FC8369D9F900000001 /* tflite_model_loader.cc in tflite */ = {isa = PBXBuildFile; fileRef = 8F62469E8369D9F900000000 /* tflite_model_loader.cc */; }; + 49B7A4FC841EB37B00000000 /* collection_has_min_size_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E841EB37B00000000 /* collection_has_min_size_calculator.cc */; }; + 49B7A4FC841EB37B00000001 /* collection_has_min_size_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E841EB37B00000000 /* collection_has_min_size_calculator.cc */; }; + 49B7A4FC849B03E000000000 /* MPPMetalHelper.mm in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E849B03E000000000 /* MPPMetalHelper.mm */; }; + 49B7A4FC849B03E000000001 /* MPPMetalHelper.mm in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E849B03E000000000 /* MPPMetalHelper.mm */; }; + 49B7A4FC8563DF9500000000 /* face_mesh_beauty_render.cc in beauty */ = {isa = PBXBuildFile; fileRef = 8F62469E8563DF9500000000 /* face_mesh_beauty_render.cc */; }; + 49B7A4FC8563DF9500000001 /* face_mesh_beauty_render.cc in beauty */ = {isa = PBXBuildFile; fileRef = 8F62469E8563DF9500000000 /* face_mesh_beauty_render.cc */; }; + 49B7A4FC8618537700000000 /* gpu_shared_data_internal.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E8618537700000000 /* gpu_shared_data_internal.cc */; }; + 49B7A4FC8618537700000001 /* gpu_shared_data_internal.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E8618537700000000 /* gpu_shared_data_internal.cc */; }; + 49B7A4FC8EDC082600000000 /* gpu_buffer.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E8EDC082600000000 /* gpu_buffer.cc */; }; + 49B7A4FC8EDC082600000001 /* gpu_buffer.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E8EDC082600000000 /* gpu_buffer.cc */; }; + 49B7A4FC8F068F4700000000 /* local_file_contents_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E8F068F4700000000 /* local_file_contents_calculator.cc */; }; + 49B7A4FC8F068F4700000001 /* local_file_contents_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E8F068F4700000000 /* local_file_contents_calculator.cc */; }; + 49B7A4FC8FB74E7600000000 /* inference_calculator.cc in tensor */ = {isa = PBXBuildFile; fileRef = 8F62469E8FB74E7600000000 /* inference_calculator.cc */; }; + 49B7A4FC8FB74E7600000001 /* inference_calculator.cc in tensor */ = {isa = PBXBuildFile; fileRef = 8F62469E8FB74E7600000000 /* inference_calculator.cc */; }; + 49B7A4FC9298B3CD00000000 /* landmarks_to_transform_matrix.cc in operations */ = {isa = PBXBuildFile; fileRef = 8F62469E9298B3CD00000000 /* landmarks_to_transform_matrix.cc */; }; + 49B7A4FC9298B3CD00000001 /* landmarks_to_transform_matrix.cc in operations */ = {isa = PBXBuildFile; fileRef = 8F62469E9298B3CD00000000 /* landmarks_to_transform_matrix.cc */; }; + 49B7A4FC92E2BF3700000000 /* gpu_buffer_format.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E92E2BF3700000000 /* gpu_buffer_format.cc */; }; + 49B7A4FC92E2BF3700000001 /* gpu_buffer_format.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E92E2BF3700000000 /* gpu_buffer_format.cc */; }; + 49B7A4FC984EF97C00000000 /* gpu_service.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E984EF97C00000000 /* gpu_service.cc */; }; + 49B7A4FC984EF97C00000001 /* gpu_service.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E984EF97C00000000 /* gpu_service.cc */; }; + 49B7A4FC998F8A2E00000000 /* NSError+util_status.mm in objc */ = {isa = PBXBuildFile; fileRef = 8F62469E998F8A2E00000000 /* NSError+util_status.mm */; }; + 49B7A4FC998F8A2E00000001 /* NSError+util_status.mm in objc */ = {isa = PBXBuildFile; fileRef = 8F62469E998F8A2E00000000 /* NSError+util_status.mm */; }; + 49B7A4FC99A19E9200000000 /* resource_util_apple.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E99A19E9200000000 /* resource_util_apple.cc */; }; + 49B7A4FC99A19E9200000001 /* resource_util_apple.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E99A19E9200000000 /* resource_util_apple.cc */; }; + 49B7A4FC9A0C486600000000 /* Filter.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E9A0C486600000000 /* Filter.cpp */; }; + 49B7A4FC9A0C486600000001 /* Filter.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E9A0C486600000000 /* Filter.cpp */; }; + 49B7A4FC9A0C486600000002 /* Filter.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E9A0C486600000000 /* Filter.cpp */; }; + 49B7A4FC9A0C486600000003 /* Filter.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E9A0C486600000000 /* Filter.cpp */; }; + 49B7A4FC9E41D6ED00000000 /* annotation_overlay_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E9E41D6ED00000000 /* annotation_overlay_calculator.cc */; }; + 49B7A4FC9E41D6ED00000001 /* annotation_overlay_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E9E41D6ED00000000 /* annotation_overlay_calculator.cc */; }; + 49B7A4FCA0A3B78B00000000 /* landmark_projection_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469EA0A3B78B00000000 /* landmark_projection_calculator.cc */; }; + 49B7A4FCA0A3B78B00000001 /* landmark_projection_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469EA0A3B78B00000000 /* landmark_projection_calculator.cc */; }; + 49B7A4FCA1639D0C00000000 /* detections_to_rects_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469EA1639D0C00000000 /* detections_to_rects_calculator.cc */; }; + 49B7A4FCA1639D0C00000001 /* detections_to_rects_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469EA1639D0C00000000 /* detections_to_rects_calculator.cc */; }; + 49B7A4FCA3E97E1400000000 /* gl_texture_buffer.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469EA3E97E1400000000 /* gl_texture_buffer.cc */; }; + 49B7A4FCA3E97E1400000001 /* gl_texture_buffer.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469EA3E97E1400000000 /* gl_texture_buffer.cc */; }; + 49B7A4FCA59EA68600000000 /* face_mesh_module_imp.cc in beauty */ = {isa = PBXBuildFile; fileRef = 8F62469EA59EA68600000000 /* face_mesh_module_imp.cc */; }; + 49B7A4FCA59EA68600000001 /* face_mesh_module_imp.cc in beauty */ = {isa = PBXBuildFile; fileRef = 8F62469EA59EA68600000000 /* face_mesh_module_imp.cc */; }; + 49B7A4FCA688677600000000 /* SourceCamera.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469EA688677600000000 /* SourceCamera.cpp */; }; + 49B7A4FCA688677600000001 /* SourceCamera.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469EA688677600000000 /* SourceCamera.cpp */; }; + 49B7A4FCA688677600000002 /* SourceCamera.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469EA688677600000000 /* SourceCamera.cpp */; }; + 49B7A4FCA688677600000003 /* SourceCamera.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469EA688677600000000 /* SourceCamera.cpp */; }; + 49B7A4FCAF368E8800000000 /* face_landmarks_to_render_data_calculator.cc in calculators */ = {isa = PBXBuildFile; fileRef = 8F62469EAF368E8800000000 /* face_landmarks_to_render_data_calculator.cc */; }; + 49B7A4FCAF368E8800000001 /* face_landmarks_to_render_data_calculator.cc in calculators */ = {isa = PBXBuildFile; fileRef = 8F62469EAF368E8800000000 /* face_landmarks_to_render_data_calculator.cc */; }; + 49B7A4FCB1AC117700000000 /* gate_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 8F62469EB1AC117700000000 /* gate_calculator.cc */; }; + 49B7A4FCB1AC117700000001 /* gate_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 8F62469EB1AC117700000000 /* gate_calculator.cc */; }; + 49B7A4FCB1FDA98700000000 /* math_utils.cpp in math */ = {isa = PBXBuildFile; fileRef = 8F62469EB1FDA98700000000 /* math_utils.cpp */; }; + 49B7A4FCB1FDA98700000001 /* math_utils.cpp in math */ = {isa = PBXBuildFile; fileRef = 8F62469EB1FDA98700000000 /* math_utils.cpp */; }; + 49B7A4FCB288401C00000000 /* ola_graph.cc in common */ = {isa = PBXBuildFile; fileRef = 8F62469EB288401C00000000 /* ola_graph.cc */; }; + 49B7A4FCB288401C00000001 /* ola_graph.cc in common */ = {isa = PBXBuildFile; fileRef = 8F62469EB288401C00000000 /* ola_graph.cc */; }; + 49B7A4FCBA4BE9D200000000 /* MPPGraphGPUData.mm in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469EBA4BE9D200000000 /* MPPGraphGPUData.mm */; }; + 49B7A4FCBA4BE9D200000001 /* MPPGraphGPUData.mm in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469EBA4BE9D200000000 /* MPPGraphGPUData.mm */; }; + 49B7A4FCBC1DF28100000000 /* landmarks_to_render_data_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469EBC1DF28100000000 /* landmarks_to_render_data_calculator.cc */; }; + 49B7A4FCBC1DF28100000001 /* landmarks_to_render_data_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469EBC1DF28100000000 /* landmarks_to_render_data_calculator.cc */; }; + 49B7A4FCBCE7858600000000 /* thresholding_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469EBCE7858600000000 /* thresholding_calculator.cc */; }; + 49B7A4FCBCE7858600000001 /* thresholding_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469EBCE7858600000000 /* thresholding_calculator.cc */; }; + 49B7A4FCBED4CA2400000000 /* detections_to_render_data_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469EBED4CA2400000000 /* detections_to_render_data_calculator.cc */; }; + 49B7A4FCBED4CA2400000001 /* detections_to_render_data_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469EBED4CA2400000000 /* detections_to_render_data_calculator.cc */; }; + 49B7A4FCC05BE00400000000 /* gl_calculator_helper_impl_common.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469EC05BE00400000000 /* gl_calculator_helper_impl_common.cc */; }; + 49B7A4FCC05BE00400000001 /* gl_calculator_helper_impl_common.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469EC05BE00400000000 /* gl_calculator_helper_impl_common.cc */; }; + 49B7A4FCC345270B00000000 /* IOSTarget.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469EC345270B00000000 /* IOSTarget.cpp */; }; + 49B7A4FCC345270B00000001 /* IOSTarget.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469EC345270B00000000 /* IOSTarget.cpp */; }; + 49B7A4FCC345270B00000002 /* IOSTarget.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469EC345270B00000000 /* IOSTarget.cpp */; }; + 49B7A4FCC345270B00000003 /* IOSTarget.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469EC345270B00000000 /* IOSTarget.cpp */; }; + 49B7A4FCC43404B200000000 /* tflite_custom_op_resolver_calculator.cc in tflite */ = {isa = PBXBuildFile; fileRef = 8F62469EC43404B200000000 /* tflite_custom_op_resolver_calculator.cc */; }; + 49B7A4FCC43404B200000001 /* tflite_custom_op_resolver_calculator.cc in tflite */ = {isa = PBXBuildFile; fileRef = 8F62469EC43404B200000000 /* tflite_custom_op_resolver_calculator.cc */; }; + 49B7A4FCC7392BFD00000000 /* TargetView.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469EC7392BFD00000000 /* TargetView.cpp */; }; + 49B7A4FCC7392BFD00000001 /* TargetView.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469EC7392BFD00000000 /* TargetView.cpp */; }; + 49B7A4FCC7392BFD00000002 /* TargetView.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469EC7392BFD00000000 /* TargetView.cpp */; }; + 49B7A4FCC7392BFD00000003 /* TargetView.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469EC7392BFD00000000 /* TargetView.cpp */; }; + 49B7A4FCCCE7F65F00000000 /* landmarks_refinement_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469ECCE7F65F00000000 /* landmarks_refinement_calculator.cc */; }; + 49B7A4FCCCE7F65F00000001 /* landmarks_refinement_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469ECCE7F65F00000000 /* landmarks_refinement_calculator.cc */; }; + 49B7A4FCCD95EE7200000000 /* previous_loopback_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 8F62469ECD95EE7200000000 /* previous_loopback_calculator.cc */; }; + 49B7A4FCCD95EE7200000001 /* previous_loopback_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 8F62469ECD95EE7200000000 /* previous_loopback_calculator.cc */; }; + 49B7A4FCCDEAEE5C00000000 /* max_pool_argmax.cc in operations */ = {isa = PBXBuildFile; fileRef = 8F62469ECDEAEE5C00000000 /* max_pool_argmax.cc */; }; + 49B7A4FCCDEAEE5C00000001 /* max_pool_argmax.cc in operations */ = {isa = PBXBuildFile; fileRef = 8F62469ECDEAEE5C00000000 /* max_pool_argmax.cc */; }; + 49B7A4FCD0D5BCFD00000000 /* end_loop_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 8F62469ED0D5BCFD00000000 /* end_loop_calculator.cc */; }; + 49B7A4FCD0D5BCFD00000001 /* end_loop_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 8F62469ED0D5BCFD00000000 /* end_loop_calculator.cc */; }; + 49B7A4FCD11949C300000000 /* gl_context.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469ED11949C300000000 /* gl_context.cc */; }; + 49B7A4FCD11949C300000001 /* gl_context.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469ED11949C300000000 /* gl_context.cc */; }; + 49B7A4FCD71B607200000000 /* split_proto_list_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 8F62469ED71B607200000000 /* split_proto_list_calculator.cc */; }; + 49B7A4FCD71B607200000001 /* split_proto_list_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 8F62469ED71B607200000000 /* split_proto_list_calculator.cc */; }; + 49B7A4FCD84977E600000000 /* tensors_to_landmarks_calculator.cc in tensor */ = {isa = PBXBuildFile; fileRef = 8F62469ED84977E600000000 /* tensors_to_landmarks_calculator.cc */; }; + 49B7A4FCD84977E600000001 /* tensors_to_landmarks_calculator.cc in tensor */ = {isa = PBXBuildFile; fileRef = 8F62469ED84977E600000000 /* tensors_to_landmarks_calculator.cc */; }; + 49B7A4FCD8BCE6D000000000 /* tensors_to_floats_calculator.cc in tensor */ = {isa = PBXBuildFile; fileRef = 8F62469ED8BCE6D000000000 /* tensors_to_floats_calculator.cc */; }; + 49B7A4FCD8BCE6D000000001 /* tensors_to_floats_calculator.cc in tensor */ = {isa = PBXBuildFile; fileRef = 8F62469ED8BCE6D000000000 /* tensors_to_floats_calculator.cc */; }; + 49B7A4FCD9FC1F1200000000 /* GLProgram.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469ED9FC1F1200000000 /* GLProgram.cpp */; }; + 49B7A4FCD9FC1F1200000001 /* GLProgram.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469ED9FC1F1200000000 /* GLProgram.cpp */; }; + 49B7A4FCD9FC1F1200000002 /* GLProgram.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469ED9FC1F1200000000 /* GLProgram.cpp */; }; + 49B7A4FCD9FC1F1200000003 /* GLProgram.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469ED9FC1F1200000000 /* GLProgram.cpp */; }; + 49B7A4FCDBE5CD1B00000000 /* Ref.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469EDBE5CD1B00000000 /* Ref.cpp */; }; + 49B7A4FCDBE5CD1B00000001 /* Ref.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469EDBE5CD1B00000000 /* Ref.cpp */; }; + 49B7A4FCDD869D9E00000000 /* gl_calculator_helper.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469EDD869D9E00000000 /* gl_calculator_helper.cc */; }; + 49B7A4FCDD869D9E00000001 /* gl_calculator_helper.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469EDD869D9E00000000 /* gl_calculator_helper.cc */; }; + 49B7A4FCE46A0E9300000000 /* association_norm_rect_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469EE46A0E9300000000 /* association_norm_rect_calculator.cc */; }; + 49B7A4FCE46A0E9300000001 /* association_norm_rect_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469EE46A0E9300000000 /* association_norm_rect_calculator.cc */; }; + 49B7A4FCE7ED8E2C00000000 /* transpose_conv_bias.cc in operations */ = {isa = PBXBuildFile; fileRef = 8F62469EE7ED8E2C00000000 /* transpose_conv_bias.cc */; }; + 49B7A4FCE7ED8E2C00000001 /* transpose_conv_bias.cc in operations */ = {isa = PBXBuildFile; fileRef = 8F62469EE7ED8E2C00000000 /* transpose_conv_bias.cc */; }; + 49B7A4FCEA623A4800000000 /* gl_texture_view.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469EEA623A4800000000 /* gl_texture_view.cc */; }; + 49B7A4FCEA623A4800000001 /* gl_texture_view.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469EEA623A4800000000 /* gl_texture_view.cc */; }; + 49B7A4FCEEE7D66700000000 /* MPPGraph.mm in objc */ = {isa = PBXBuildFile; fileRef = 8F62469EEEE7D66700000000 /* MPPGraph.mm */; }; + 49B7A4FCEEE7D66700000001 /* MPPGraph.mm in objc */ = {isa = PBXBuildFile; fileRef = 8F62469EEEE7D66700000000 /* MPPGraph.mm */; }; + 49B7A4FCF18A35B600000000 /* max_unpooling.cc in operations */ = {isa = PBXBuildFile; fileRef = 8F62469EF18A35B600000000 /* max_unpooling.cc */; }; + 49B7A4FCF18A35B600000001 /* max_unpooling.cc in operations */ = {isa = PBXBuildFile; fileRef = 8F62469EF18A35B600000000 /* max_unpooling.cc */; }; + 49B7A4FCF332D51F00000000 /* image_to_tensor_converter_opencv.cc in tensor */ = {isa = PBXBuildFile; fileRef = 8F62469EF332D51F00000000 /* image_to_tensor_converter_opencv.cc */; }; + 49B7A4FCF332D51F00000001 /* image_to_tensor_converter_opencv.cc in tensor */ = {isa = PBXBuildFile; fileRef = 8F62469EF332D51F00000000 /* image_to_tensor_converter_opencv.cc */; }; + 49B7A4FCF4C8279B00000000 /* OlaFaceUnity.mm in ios */ = {isa = PBXBuildFile; fileRef = 8F62469EF4C8279B00000000 /* OlaFaceUnity.mm */; }; + 49B7A4FCF4C8279B00000001 /* OlaFaceUnity.mm in ios */ = {isa = PBXBuildFile; fileRef = 8F62469EF4C8279B00000000 /* OlaFaceUnity.mm */; }; + 49B7A4FCF51362E900000000 /* gl_texture_buffer_pool.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469EF51362E900000000 /* gl_texture_buffer_pool.cc */; }; + 49B7A4FCF51362E900000001 /* gl_texture_buffer_pool.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469EF51362E900000000 /* gl_texture_buffer_pool.cc */; }; + 49B7A4FCFD02751100000000 /* op_resolver.cc in tflite */ = {isa = PBXBuildFile; fileRef = 8F62469EFD02751100000000 /* op_resolver.cc */; }; + 49B7A4FCFD02751100000001 /* op_resolver.cc in tflite */ = {isa = PBXBuildFile; fileRef = 8F62469EFD02751100000000 /* op_resolver.cc */; }; + 49B7A4FCFF18EE3C00000000 /* MPPMetalUtil.mm in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469EFF18EE3C00000000 /* MPPMetalUtil.mm */; }; + 49B7A4FCFF18EE3C00000001 /* MPPMetalUtil.mm in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469EFF18EE3C00000000 /* MPPMetalUtil.mm */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 79F19D9D06BDEB2B00000000 /* PBXContainerItemProxy */ = { + 7571235F04A520C300000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E50106BDEB2A00000000; + remoteGlobalIDString = D50916B904A520C200000000; }; - 79F19D9D0AA81EC300000000 /* PBXContainerItemProxy */ = { + 7571235F0A556C3100000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E5010AA81EC200000000; + remoteGlobalIDString = D50916B90A556C3000000000; }; - 79F19D9D0C83C67D00000000 /* PBXContainerItemProxy */ = { + 7571235F0B74D91900000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E5010C83C67C00000000; + remoteGlobalIDString = D50916B90B74D91800000000; }; - 79F19D9D107AC04100000000 /* PBXContainerItemProxy */ = { + 7571235F0EBED90100000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E501107AC04000000000; + remoteGlobalIDString = D50916B90EBED90000000000; }; - 79F19D9D126D7CC700000000 /* PBXContainerItemProxy */ = { + 7571235F14B7442B00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E501126D7CC600000000; + remoteGlobalIDString = D50916B914B7442A00000000; }; - 79F19D9D12A6202500000000 /* PBXContainerItemProxy */ = { + 7571235F16C7A06F00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E50112A6202400000000; + remoteGlobalIDString = D50916B916C7A06E00000000; }; - 79F19D9D25CEBB5F00000000 /* PBXContainerItemProxy */ = { + 7571235F17CF694F00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E50125CEBB5E00000000; + remoteGlobalIDString = D50916B917CF694E00000000; }; - 79F19D9D28DF669100000000 /* PBXContainerItemProxy */ = { + 7571235F1918237700000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E50128DF669000000000; + remoteGlobalIDString = D50916B91918237600000000; }; - 79F19D9D2B54506300000000 /* PBXContainerItemProxy */ = { + 7571235F1AFB53CB00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E5012B54506200000000; + remoteGlobalIDString = D50916B91AFB53CA00000000; }; - 79F19D9D2CDA58B700000000 /* PBXContainerItemProxy */ = { + 7571235F2FCF8C3F00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E5012CDA58B600000000; + remoteGlobalIDString = D50916B92FCF8C3E00000000; }; - 79F19D9D2EDC5D5B00000000 /* PBXContainerItemProxy */ = { + 7571235F32A4BF4B00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E5012EDC5D5A00000000; + remoteGlobalIDString = D50916B932A4BF4A00000000; }; - 79F19D9D33E4A23D00000000 /* PBXContainerItemProxy */ = { + 7571235F32AD902100000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E50133E4A23C00000000; + remoteGlobalIDString = D50916B932AD902000000000; }; - 79F19D9D37FF534F00000000 /* PBXContainerItemProxy */ = { + 7571235F395CFE5100000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E50137FF534E00000000; + remoteGlobalIDString = D50916B9395CFE5000000000; }; - 79F19D9D3C33B88F00000000 /* PBXContainerItemProxy */ = { + 7571235F39FF367F00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E5013C33B88E00000000; + remoteGlobalIDString = D50916B939FF367E00000000; }; - 79F19D9D3F591E2F00000000 /* PBXContainerItemProxy */ = { + 7571235F47A74E8D00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E5013F591E2E00000000; + remoteGlobalIDString = D50916B947A74E8C00000000; }; - 79F19D9D4594765900000000 /* PBXContainerItemProxy */ = { + 7571235F4835E8D500000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E5014594765800000000; + remoteGlobalIDString = D50916B94835E8D400000000; }; - 79F19D9D45A4DD6500000000 /* PBXContainerItemProxy */ = { + 7571235F4A6C65DF00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E50145A4DD6400000000; + remoteGlobalIDString = D50916B94A6C65DE00000000; }; - 79F19D9D462EFBA300000000 /* PBXContainerItemProxy */ = { + 7571235F4C962DED00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E501462EFBA200000000; + remoteGlobalIDString = D50916B94C962DEC00000000; }; - 79F19D9D46D4E80900000000 /* PBXContainerItemProxy */ = { + 7571235F507BECC700000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E50146D4E80800000000; + remoteGlobalIDString = D50916B9507BECC600000000; }; - 79F19D9D4843522D00000000 /* PBXContainerItemProxy */ = { + 7571235F52EE187D00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E5014843522C00000000; + remoteGlobalIDString = D50916B952EE187C00000000; }; - 79F19D9D4C0DA67100000000 /* PBXContainerItemProxy */ = { + 7571235F55AF4C6500000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E5014C0DA67000000000; + remoteGlobalIDString = D50916B955AF4C6400000000; }; - 79F19D9D4EABA32900000000 /* PBXContainerItemProxy */ = { + 7571235F5924467F00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E5014EABA32800000000; + remoteGlobalIDString = D50916B95924467E00000000; }; - 79F19D9D4EF47AD100000000 /* PBXContainerItemProxy */ = { + 7571235F5D80A99B00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E5014EF47AD000000000; + remoteGlobalIDString = D50916B95D80A99A00000000; }; - 79F19D9D5EC7447B00000000 /* PBXContainerItemProxy */ = { + 7571235F600148FB00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E5015EC7447A00000000; + remoteGlobalIDString = D50916B9600148FA00000000; }; - 79F19D9D5F25395100000000 /* PBXContainerItemProxy */ = { + 7571235F60D0021D00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E5015F25395000000000; + remoteGlobalIDString = D50916B960D0021C00000000; }; - 79F19D9D5F558F1D00000000 /* PBXContainerItemProxy */ = { + 7571235F6D62510500000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E5015F558F1C00000000; + remoteGlobalIDString = D50916B96D62510400000000; }; - 79F19D9D60A115C900000000 /* PBXContainerItemProxy */ = { + 7571235F79337D3300000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E50160A115C800000000; + remoteGlobalIDString = D50916B979337D3200000000; }; - 79F19D9D62D4D60D00000000 /* PBXContainerItemProxy */ = { + 7571235F797718E700000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E50162D4D60C00000000; + remoteGlobalIDString = D50916B9797718E600000000; }; - 79F19D9D652D07FF00000000 /* PBXContainerItemProxy */ = { + 7571235F7E562BDF00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E501652D07FE00000000; + remoteGlobalIDString = D50916B97E562BDE00000000; }; - 79F19D9D680A55C900000000 /* PBXContainerItemProxy */ = { + 7571235F80FCD45900000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E501680A55C800000000; + remoteGlobalIDString = D50916B980FCD45800000000; }; - 79F19D9D6999113F00000000 /* PBXContainerItemProxy */ = { + 7571235F8A94473900000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E5016999113E00000000; + remoteGlobalIDString = D50916B98A94473800000000; }; - 79F19D9D6B67FEED00000000 /* PBXContainerItemProxy */ = { + 7571235F8AC3922B00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E5016B67FEEC00000000; + remoteGlobalIDString = D50916B98AC3922A00000000; }; - 79F19D9D6B9DD04500000000 /* PBXContainerItemProxy */ = { + 7571235F8C82B9EF00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E5016B9DD04400000000; + remoteGlobalIDString = D50916B98C82B9EE00000000; }; - 79F19D9D7073403D00000000 /* PBXContainerItemProxy */ = { + 7571235F91B35B4700000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E5017073403C00000000; + remoteGlobalIDString = D50916B991B35B4600000000; }; - 79F19D9D71C7DBE500000000 /* PBXContainerItemProxy */ = { + 7571235F92DAA70B00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E50171C7DBE400000000; + remoteGlobalIDString = D50916B992DAA70A00000000; }; - 79F19D9D76D9570300000000 /* PBXContainerItemProxy */ = { + 7571235F95AF928500000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E50176D9570200000000; + remoteGlobalIDString = D50916B995AF928400000000; }; - 79F19D9D7B881ECB00000000 /* PBXContainerItemProxy */ = { + 7571235F95D3064100000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E5017B881ECA00000000; + remoteGlobalIDString = D50916B995D3064000000000; }; - 79F19D9D84D8D44100000000 /* PBXContainerItemProxy */ = { + 7571235F984088FD00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E50184D8D44000000000; + remoteGlobalIDString = D50916B9984088FC00000000; }; - 79F19D9D9537EA2700000000 /* PBXContainerItemProxy */ = { + 7571235F9D198C3700000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E5019537EA2600000000; + remoteGlobalIDString = D50916B99D198C3600000000; }; - 79F19D9D98631CBF00000000 /* PBXContainerItemProxy */ = { + 7571235FA5AC836500000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E50198631CBE00000000; + remoteGlobalIDString = D50916B9A5AC836400000000; }; - 79F19D9D98D05C4B00000000 /* PBXContainerItemProxy */ = { + 7571235FACE90FE300000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E50198D05C4A00000000; + remoteGlobalIDString = D50916B9ACE90FE200000000; }; - 79F19D9DB052EDC900000000 /* PBXContainerItemProxy */ = { + 7571235FB474037D00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = B0D91B25B052EDC800000000; + remoteGlobalIDString = D50916B9B474037C00000000; }; - 79F19D9DBA73597300000000 /* PBXContainerItemProxy */ = { + 7571235FB67384D100000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E501BA73597200000000; + remoteGlobalIDString = 281DB351B67384D000000000; }; - 79F19D9DBBDDDAB900000000 /* PBXContainerItemProxy */ = { + 7571235FB784310700000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E501BBDDDAB800000000; + remoteGlobalIDString = D50916B9B784310600000000; }; - 79F19D9DBE53424B00000000 /* PBXContainerItemProxy */ = { + 7571235FBAB5C57F00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E501BE53424A00000000; + remoteGlobalIDString = D50916B9BAB5C57E00000000; }; - 79F19D9DBFC8082300000000 /* PBXContainerItemProxy */ = { + 7571235FBAEEE68700000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E501BFC8082200000000; + remoteGlobalIDString = D50916B9BAEEE68600000000; }; - 79F19D9DC7D8DFDF00000000 /* PBXContainerItemProxy */ = { + 7571235FBCE0083900000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E501C7D8DFDE00000000; + remoteGlobalIDString = D50916B9BCE0083800000000; }; - 79F19D9DD05A039B00000000 /* PBXContainerItemProxy */ = { + 7571235FC415A01D00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E501D05A039A00000000; + remoteGlobalIDString = D50916B9C415A01C00000000; }; - 79F19D9DD40A970700000000 /* PBXContainerItemProxy */ = { + 7571235FC4F8B64100000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E501D40A970600000000; + remoteGlobalIDString = D50916B9C4F8B64000000000; }; - 79F19D9DD5C6ED8300000000 /* PBXContainerItemProxy */ = { + 7571235FCB8F507D00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E501D5C6ED8200000000; + remoteGlobalIDString = D50916B9CB8F507C00000000; }; - 79F19D9DD625937500000000 /* PBXContainerItemProxy */ = { + 7571235FCF5F5EE700000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E501D625937400000000; + remoteGlobalIDString = D50916B9CF5F5EE600000000; }; - 79F19D9DD971168F00000000 /* PBXContainerItemProxy */ = { + 7571235FD2A53B2100000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E501D971168E00000000; + remoteGlobalIDString = D50916B9D2A53B2000000000; }; - 79F19D9DD9E967BF00000000 /* PBXContainerItemProxy */ = { + 7571235FD2C9CDB900000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E501D9E967BE00000000; + remoteGlobalIDString = D50916B9D2C9CDB800000000; }; - 79F19D9DE12D6E0F00000000 /* PBXContainerItemProxy */ = { + 7571235FD320929F00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E501E12D6E0E00000000; + remoteGlobalIDString = D50916B9D320929E00000000; }; - 79F19D9DE1EABCB700000000 /* PBXContainerItemProxy */ = { + 7571235FD3EB570900000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E501E1EABCB600000000; + remoteGlobalIDString = D50916B9D3EB570800000000; }; - 79F19D9DE67C2A1B00000000 /* PBXContainerItemProxy */ = { + 7571235FDCA2423700000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E501E67C2A1A00000000; + remoteGlobalIDString = D50916B9DCA2423600000000; }; - 79F19D9DF07E016F00000000 /* PBXContainerItemProxy */ = { + 7571235FE5D2ED5700000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E501F07E016E00000000; + remoteGlobalIDString = D50916B9E5D2ED5600000000; }; - 79F19D9DF3D581C900000000 /* PBXContainerItemProxy */ = { + 7571235FEC4DADE300000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E501F3D581C800000000; + remoteGlobalIDString = D50916B9EC4DADE200000000; }; - 79F19D9DF57C17F100000000 /* PBXContainerItemProxy */ = { + 7571235FEEDCEF1900000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E501F57C17F000000000; + remoteGlobalIDString = D50916B9EEDCEF1800000000; }; - 79F19D9DF70D126B00000000 /* PBXContainerItemProxy */ = { + 7571235FF4D779E300000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E501F70D126A00000000; + remoteGlobalIDString = D50916B9F4D779E200000000; }; - 79F19D9DF727D6E300000000 /* PBXContainerItemProxy */ = { + 7571235FF5035E2500000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E501F727D6E200000000; + remoteGlobalIDString = D50916B9F5035E2400000000; }; - 79F19D9DF8F8F01D00000000 /* PBXContainerItemProxy */ = { + 7571235FFB58229B00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E501F8F8F01C00000000; + remoteGlobalIDString = D50916B9FB58229A00000000; }; - 79F19D9DFE323FCF00000000 /* PBXContainerItemProxy */ = { + 7571235FFD5CA03100000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = E8D406AA11D4451E00000000 /* Project object */; + containerPortal = 22488B02D730B92B00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D807E501FE323FCE00000000; + remoteGlobalIDString = D50916B9FD5CA03000000000; }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ - AED7A97F004AA53400000000 /* lib_idx_begin_loop_calculator_FEDA75EA_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_begin_loop_calculator_FEDA75EA_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F024E437300000000 /* TargetView.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = TargetView.cpp; path = mediapipe/render/core/TargetView.cpp; sourceTree = ""; }; - AED7A97F02C2765300000000 /* IOSTarget.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = IOSTarget.hpp; path = mediapipe/render/core/IOSTarget.hpp; sourceTree = ""; }; - AED7A97F043DD14B00000000 /* gpu_buffer_multi_pool.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gpu_buffer_multi_pool.cc; path = mediapipe/gpu/gpu_buffer_multi_pool.cc; sourceTree = ""; }; - AED7A97F0453AA5800000000 /* lib_idx_image_to_tensor_calculator_C3DB5E1E_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_image_to_tensor_calculator_C3DB5E1E_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F054C67EB00000000 /* GPUImageUtil.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = GPUImageUtil.cpp; path = mediapipe/render/core/GPUImageUtil.cpp; sourceTree = ""; }; - AED7A97F0556389200000000 /* lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_7ED8D1B5_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_7ED8D1B5_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F09DE828200000000 /* lib_idx_olamodule_common_library_4A2D4D8A_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_olamodule_common_library_4A2D4D8A_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F0D075E6600000000 /* vec2.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vec2.cpp; path = mediapipe/render/core/math/vec2.cpp; sourceTree = ""; }; - AED7A97F0D37EB1400000000 /* lib_idx_op_resolver_E390FDC7_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_op_resolver_E390FDC7_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F0F5DFEC400000000 /* lib_idx_util_28409609_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_util_28409609_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F10B91A6400000000 /* lib_idx_max_unpooling_max_pool_argmax_92E156D6_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_max_unpooling_max_pool_argmax_92E156D6_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F115CC07300000000 /* Context.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Context.cpp; path = mediapipe/render/core/Context.cpp; sourceTree = ""; }; - AED7A97F12C953C600000000 /* GPUImage-x.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "GPUImage-x.h"; path = "mediapipe/render/core/GPUImage-x.h"; sourceTree = ""; }; - AED7A97F14A783CE00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = third_party/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - AED7A97F14D36E2200000000 /* gl_thread_collector.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_thread_collector.h; path = mediapipe/gpu/gl_thread_collector.h; sourceTree = ""; }; - AED7A97F15470C1200000000 /* resource_util_custom.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = resource_util_custom.h; path = mediapipe/util/resource_util_custom.h; sourceTree = ""; }; - AED7A97F17D3192E00000000 /* 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 = ""; }; - AED7A97F17E9E7AC00000000 /* lib_idx_gl_calculator_helper_D8986C65_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_gl_calculator_helper_D8986C65_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F18343BA800000000 /* 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 = ""; }; - AED7A97F18E10F1600000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/modules/face_landmark/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - AED7A97F1AF2345600000000 /* rectangle_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = rectangle_util.cc; path = mediapipe/util/rectangle_util.cc; sourceTree = ""; }; - AED7A97F1B9417A400000000 /* rectangle_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = rectangle_util.h; path = mediapipe/util/rectangle_util.h; sourceTree = ""; }; - AED7A97F1C1E706800000000 /* pixel_buffer_pool_util.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = pixel_buffer_pool_util.mm; path = mediapipe/gpu/pixel_buffer_pool_util.mm; sourceTree = ""; }; - AED7A97F1CB8D33100000000 /* OlaFaceUnity.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = OlaFaceUnity.h; path = mediapipe/render/module/beauty/ios/OlaFaceUnity.h; sourceTree = ""; }; - AED7A97F1D11BD0C00000000 /* lib_idx_previous_loopback_calculator_header_util_D9AEB78A_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_previous_loopback_calculator_header_util_D9AEB78A_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F1D95D95600000000 /* SourceImage.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = SourceImage.hpp; path = mediapipe/render/core/SourceImage.hpp; sourceTree = ""; }; - AED7A97F1F021A8400000000 /* gl_texture_view.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_texture_view.h; path = mediapipe/gpu/gl_texture_view.h; sourceTree = ""; }; - AED7A97F1F27769C00000000 /* lib_idx_image_to_tensor_converter_metal_9AA64D0A_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_image_to_tensor_converter_metal_9AA64D0A_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F216C8D5C00000000 /* gl_texture_view.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gl_texture_view.cc; path = mediapipe/gpu/gl_texture_view.cc; sourceTree = ""; }; - AED7A97F21F0D81000000000 /* lib_idx_gpu_buffer_storage_gpu_buffer_format_BA46520A_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_gpu_buffer_storage_gpu_buffer_format_BA46520A_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F2284465B00000000 /* annotation_overlay_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = annotation_overlay_calculator.cc; path = mediapipe/calculators/util/annotation_overlay_calculator.cc; sourceTree = ""; }; - AED7A97F24C2D8FF00000000 /* attachments.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = attachments.h; path = mediapipe/gpu/attachments.h; sourceTree = ""; }; - AED7A97F25A42A6600000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/graphs/face_mesh/subgraphs/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - AED7A97F2684427300000000 /* rect_transformation_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = rect_transformation_calculator.cc; path = mediapipe/calculators/util/rect_transformation_calculator.cc; sourceTree = ""; }; - AED7A97F2783FF8600000000 /* lib_idx_util_28409609_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_util_28409609_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F29667CB800000000 /* 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 = ""; }; - AED7A97F296F7FCB00000000 /* MPPGraph.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MPPGraph.h; path = mediapipe/objc/MPPGraph.h; sourceTree = ""; }; - AED7A97F2A43360700000000 /* Framebuffer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Framebuffer.cpp; path = mediapipe/render/core/Framebuffer.cpp; sourceTree = ""; }; - AED7A97F2AC65A7D00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/calculators/image/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - AED7A97F2B05D03900000000 /* 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 = ""; }; - AED7A97F2BAC9A6C00000000 /* lib_idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_7F9F05C6_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_7F9F05C6_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F2BFD778400000000 /* lib_idx_non_max_suppression_calculator_EA803631_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_non_max_suppression_calculator_EA803631_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F2CE04EFD00000000 /* tensors_to_landmarks_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tensors_to_landmarks_calculator.cc; path = mediapipe/calculators/tensor/tensors_to_landmarks_calculator.cc; sourceTree = ""; }; - AED7A97F2CF5607E00000000 /* OlaFaceUnityFramework.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = OlaFaceUnityFramework.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F2D2504B400000000 /* Ref.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = Ref.hpp; path = mediapipe/render/core/Ref.hpp; sourceTree = ""; }; - AED7A97F2E6B486000000000 /* gpu_buffer_format.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gpu_buffer_format.cc; path = mediapipe/gpu/gpu_buffer_format.cc; sourceTree = ""; }; - AED7A97F2FF7641A00000000 /* vec4.inl */ = {isa = PBXFileReference; lastKnownFileType = "public.c-plus-plus-inline-header"; name = vec4.inl; path = mediapipe/render/core/math/vec4.inl; sourceTree = ""; }; - AED7A97F30D1B2CD00000000 /* Target.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Target.cpp; path = mediapipe/render/core/Target.cpp; sourceTree = ""; }; - AED7A97F321D0D7800000000 /* lib_idx_gl_simple_shaders_6A91D77D_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_gl_simple_shaders_6A91D77D_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F3360798700000000 /* transform_landmarks.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = transform_landmarks.h; path = mediapipe/util/tflite/operations/transform_landmarks.h; sourceTree = ""; }; - AED7A97F33F60BE100000000 /* SourceCamera.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = SourceCamera.hpp; path = mediapipe/render/core/SourceCamera.hpp; sourceTree = ""; }; - AED7A97F350B780B00000000 /* face_mesh_module.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = face_mesh_module.cpp; path = mediapipe/render/module/beauty/face_mesh_module.cpp; sourceTree = ""; }; - AED7A97F35479D9E00000000 /* vec3.inl */ = {isa = PBXFileReference; lastKnownFileType = "public.c-plus-plus-inline-header"; name = vec3.inl; path = mediapipe/render/core/math/vec3.inl; sourceTree = ""; }; - AED7A97F3634749B00000000 /* previous_loopback_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = previous_loopback_calculator.cc; path = mediapipe/calculators/core/previous_loopback_calculator.cc; sourceTree = ""; }; - AED7A97F3637376A00000000 /* image_to_tensor_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = image_to_tensor_calculator.cc; path = mediapipe/calculators/tensor/image_to_tensor_calculator.cc; sourceTree = ""; }; - AED7A97F36C8B0C800000000 /* lib_idx_cpu_op_resolver_741B9450_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_cpu_op_resolver_741B9450_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F36FF738D00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/util/tflite/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - AED7A97F3743224400000000 /* lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_26C42D3D_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_26C42D3D_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F38E88DF400000000 /* GPUImageUtil.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = GPUImageUtil.h; path = mediapipe/render/core/GPUImageUtil.h; sourceTree = ""; }; - AED7A97F39B50CDA00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/graphs/face_mesh/calculators/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - AED7A97F3BCE8AD900000000 /* image_to_tensor_converter_opencv.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = image_to_tensor_converter_opencv.cc; path = mediapipe/calculators/tensor/image_to_tensor_converter_opencv.cc; sourceTree = ""; }; - AED7A97F3CC849C200000000 /* end_loop_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = end_loop_calculator.cc; path = mediapipe/calculators/core/end_loop_calculator.cc; sourceTree = ""; }; - AED7A97F3D487D7600000000 /* lib_idx_mediapipe_framework_ios_E5983FAB_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_mediapipe_framework_ios_E5983FAB_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F4144F2D600000000 /* lib_idx_image_to_tensor_converter_metal_9AA64D0A_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_image_to_tensor_converter_metal_9AA64D0A_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F4231667400000000 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_AB0D0716_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_AB0D0716_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F425236D800000000 /* tensors_to_floats_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tensors_to_floats_calculator.cc; path = mediapipe/calculators/tensor/tensors_to_floats_calculator.cc; sourceTree = ""; }; - AED7A97F4373C5BE00000000 /* math.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = math.cpp; path = mediapipe/render/core/math.cpp; sourceTree = ""; }; - AED7A97F439B269800000000 /* gl_simple_shaders.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gl_simple_shaders.cc; path = mediapipe/gpu/gl_simple_shaders.cc; sourceTree = ""; }; - AED7A97F43CED18C00000000 /* lib_idx_tensors_to_detections_calculator_888E512F_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_tensors_to_detections_calculator_888E512F_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F4528D20000000000 /* 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 = ""; }; - AED7A97F461F2F7700000000 /* CFHolder.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CFHolder.h; path = mediapipe/objc/CFHolder.h; sourceTree = ""; }; - AED7A97F46361A7400000000 /* Filter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Filter.cpp; path = mediapipe/render/core/Filter.cpp; sourceTree = ""; }; - AED7A97F466D956B00000000 /* 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 = ""; }; - AED7A97F46E8118200000000 /* tensors_to_detections_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tensors_to_detections_calculator.cc; path = mediapipe/calculators/tensor/tensors_to_detections_calculator.cc; sourceTree = ""; }; - AED7A97F47EFAC5200000000 /* FramebufferCache.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = FramebufferCache.hpp; path = mediapipe/render/core/FramebufferCache.hpp; sourceTree = ""; }; - AED7A97F485AE53400000000 /* MPPMetalHelper.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = MPPMetalHelper.mm; path = mediapipe/gpu/MPPMetalHelper.mm; sourceTree = ""; }; - AED7A97F48DBF45200000000 /* lib_idx_resource_util_B6FA1F0B_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_resource_util_B6FA1F0B_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F48DF98DB00000000 /* inference_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = inference_calculator.cc; path = mediapipe/calculators/tensor/inference_calculator.cc; sourceTree = ""; }; - AED7A97F4A333ECF00000000 /* gl_calculator_helper_impl_common.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gl_calculator_helper_impl_common.cc; path = mediapipe/gpu/gl_calculator_helper_impl_common.cc; sourceTree = ""; }; - AED7A97F4AC087AD00000000 /* MPPGraphGPUData.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = MPPGraphGPUData.mm; path = mediapipe/gpu/MPPGraphGPUData.mm; sourceTree = ""; }; - AED7A97F4B8CA68500000000 /* GPUImageTarget.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = GPUImageTarget.h; path = mediapipe/render/core/GPUImageTarget.h; sourceTree = ""; }; - AED7A97F4D7323A000000000 /* resource_cache.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = resource_cache.h; path = mediapipe/util/resource_cache.h; sourceTree = ""; }; - AED7A97F4E6E1B1A00000000 /* vec4.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vec4.cpp; path = mediapipe/render/core/math/vec4.cpp; sourceTree = ""; }; - AED7A97F4E8A433800000000 /* lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_26C42D3D_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_26C42D3D_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F4ECFA1D200000000 /* gl_calculator_helper.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gl_calculator_helper.cc; path = mediapipe/gpu/gl_calculator_helper.cc; sourceTree = ""; }; - AED7A97F4F3D133A00000000 /* 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 = ""; }; - AED7A97F4F7EA7CE00000000 /* cpu_op_resolver.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cpu_op_resolver.cc; path = mediapipe/util/tflite/cpu_op_resolver.cc; sourceTree = ""; }; - AED7A97F506A492500000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/render/core/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - AED7A97F511EA79600000000 /* lib_idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_7F9F05C6_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_7F9F05C6_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F512859F400000000 /* util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = util.cc; path = mediapipe/objc/util.cc; sourceTree = ""; }; - AED7A97F51B51D6D00000000 /* 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 = ""; }; - AED7A97F528D2C4F00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/modules/face_detection/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - AED7A97F53B35E3E00000000 /* gpu_buffer_multi_pool.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gpu_buffer_multi_pool.h; path = mediapipe/gpu/gpu_buffer_multi_pool.h; sourceTree = ""; }; - AED7A97F54A0DE6100000000 /* pixel_buffer_pool_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = pixel_buffer_pool_util.h; path = mediapipe/gpu/pixel_buffer_pool_util.h; sourceTree = ""; }; - AED7A97F553C1F9100000000 /* 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 = ""; }; - AED7A97F55FAB76100000000 /* end_loop_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = end_loop_calculator.h; path = mediapipe/calculators/core/end_loop_calculator.h; sourceTree = ""; }; - AED7A97F567DD13A00000000 /* math_utils.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = math_utils.cpp; path = mediapipe/render/core/math/math_utils.cpp; sourceTree = ""; }; - AED7A97F569BAB1800000000 /* lib_idx_annotation_renderer_BE836363_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_annotation_renderer_BE836363_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F56B9E0C600000000 /* lib_idx_annotation_renderer_BE836363_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_annotation_renderer_BE836363_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F56D28C4300000000 /* inference_calculator_cpu.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = inference_calculator_cpu.cc; path = mediapipe/calculators/tensor/inference_calculator_cpu.cc; sourceTree = ""; }; - AED7A97F571FD55A00000000 /* gpu_buffer_format.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gpu_buffer_format.h; path = mediapipe/gpu/gpu_buffer_format.h; sourceTree = ""; }; - AED7A97F57EF428E00000000 /* resource_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = resource_util.cc; path = mediapipe/util/resource_util.cc; sourceTree = ""; }; - AED7A97F59B674E800000000 /* lib_idx_ref_gpuimagemath_gpuimageutil_8BF43A5D_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_ref_gpuimagemath_gpuimageutil_8BF43A5D_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F5BB68F3500000000 /* gl_context.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_context.h; path = mediapipe/gpu/gl_context.h; sourceTree = ""; }; - AED7A97F5C1FBB0A00000000 /* lib_idx_transpose_conv_bias_207EFBC1_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_transpose_conv_bias_207EFBC1_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F5DA9AAF300000000 /* max_unpooling.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = max_unpooling.cc; path = mediapipe/util/tflite/operations/max_unpooling.cc; sourceTree = ""; }; - AED7A97F5E64FA8000000000 /* image_frame_view.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = image_frame_view.h; path = mediapipe/gpu/image_frame_view.h; sourceTree = ""; }; - AED7A97F5F69EDD100000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/graphs/face_mesh/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - AED7A97F5F82C4D900000000 /* CVFramebuffer.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = CVFramebuffer.hpp; path = mediapipe/render/core/CVFramebuffer.hpp; sourceTree = ""; }; - AED7A97F60B164C900000000 /* graph_support.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = graph_support.h; path = mediapipe/gpu/graph_support.h; sourceTree = ""; }; - AED7A97F60D3B6A400000000 /* image_to_tensor_converter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = image_to_tensor_converter.h; path = mediapipe/calculators/tensor/image_to_tensor_converter.h; sourceTree = ""; }; - AED7A97F610B41F300000000 /* tflite_custom_op_resolver_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tflite_custom_op_resolver_calculator.cc; path = mediapipe/calculators/tflite/tflite_custom_op_resolver_calculator.cc; sourceTree = ""; }; - AED7A97F612FDD7700000000 /* mat4.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = mat4.hpp; path = mediapipe/render/core/math/mat4.hpp; sourceTree = ""; }; - AED7A97F61BCBB4F00000000 /* MPPMetalUtil.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = MPPMetalUtil.mm; path = mediapipe/gpu/MPPMetalUtil.mm; sourceTree = ""; }; - AED7A97F62B6E69B00000000 /* 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 = ""; }; - AED7A97F643D598200000000 /* lib_idx_shader_util_F77AE4F3_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_shader_util_F77AE4F3_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F64463C9D00000000 /* header_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = header_util.h; path = mediapipe/util/header_util.h; sourceTree = ""; }; - AED7A97F6680C42E00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/render/module/common/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - AED7A97F6708DA9D00000000 /* annotation_renderer.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = annotation_renderer.cc; path = mediapipe/util/annotation_renderer.cc; sourceTree = ""; }; - AED7A97F67291D3100000000 /* header_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = header_util.cc; path = mediapipe/util/header_util.cc; sourceTree = ""; }; - AED7A97F693AA84D00000000 /* image_to_tensor_converter_opencv.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = image_to_tensor_converter_opencv.h; path = mediapipe/calculators/tensor/image_to_tensor_converter_opencv.h; sourceTree = ""; }; - AED7A97F6953E68600000000 /* lib_idx_clip_vector_size_calculator_02FA2733_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_clip_vector_size_calculator_02FA2733_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F6A2EDEA000000000 /* lib_idx_math_3043B97F_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_math_3043B97F_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F6A77E38000000000 /* ssd_anchors_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ssd_anchors_calculator.cc; path = mediapipe/calculators/tflite/ssd_anchors_calculator.cc; sourceTree = ""; }; - AED7A97F6A89A27A00000000 /* lib_idx_gpu_buffer_multi_pool_gl_context_4D0E07B8_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_gpu_buffer_multi_pool_gl_context_4D0E07B8_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F6B12573400000000 /* mat4.inl */ = {isa = PBXFileReference; lastKnownFileType = "public.c-plus-plus-inline-header"; name = mat4.inl; path = mediapipe/render/core/math/mat4.inl; sourceTree = ""; }; - AED7A97F6B79879800000000 /* inference_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = inference_calculator.h; path = mediapipe/calculators/tensor/inference_calculator.h; sourceTree = ""; }; - AED7A97F6BBCCA9800000000 /* lib_idx_begin_loop_calculator_FEDA75EA_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_begin_loop_calculator_FEDA75EA_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F6D305F1600000000 /* lib_idx_resource_util_B6FA1F0B_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_resource_util_B6FA1F0B_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F6E0AB7DE00000000 /* MPPTimestampConverter.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = MPPTimestampConverter.mm; path = mediapipe/objc/MPPTimestampConverter.mm; sourceTree = ""; }; - AED7A97F70B3208200000000 /* GPUImageMacros.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = GPUImageMacros.h; path = mediapipe/render/core/GPUImageMacros.h; sourceTree = ""; }; - AED7A97F7157E27C00000000 /* MPPTimestampConverter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MPPTimestampConverter.h; path = mediapipe/objc/MPPTimestampConverter.h; sourceTree = ""; }; - AED7A97F71FB390000000000 /* 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_A15F304E_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_A15F304E_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F72A6165000000000 /* landmarks_refinement_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = landmarks_refinement_calculator.cc; path = mediapipe/calculators/util/landmarks_refinement_calculator.cc; sourceTree = ""; }; - AED7A97F730C61E800000000 /* 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 = ""; }; - AED7A97F731BD67000000000 /* FramebufferCache.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = FramebufferCache.cpp; path = mediapipe/render/core/FramebufferCache.cpp; sourceTree = ""; }; - AED7A97F733BC1A800000000 /* lib_idx_core_core-ios_4EDC2AF0_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = "lib_idx_core_core-ios_4EDC2AF0_ios_min15.5.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F7352B17300000000 /* Source.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Source.cpp; path = mediapipe/render/core/Source.cpp; sourceTree = ""; }; - AED7A97F73F96BB900000000 /* shader_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shader_util.cc; path = mediapipe/gpu/shader_util.cc; sourceTree = ""; }; - AED7A97F7438783800000000 /* lib_idx_gpu_buffer_multi_pool_gl_context_4D0E07B8_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_gpu_buffer_multi_pool_gl_context_4D0E07B8_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F74F94ED900000000 /* landmark_projection_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = landmark_projection_calculator.cc; path = mediapipe/calculators/util/landmark_projection_calculator.cc; sourceTree = ""; }; - AED7A97F755AC2A200000000 /* vec2.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = vec2.hpp; path = mediapipe/render/core/math/vec2.hpp; sourceTree = ""; }; - AED7A97F7668967200000000 /* lib_idx_tflite_model_loader_F900857E_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_tflite_model_loader_F900857E_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F76795D6D00000000 /* Framebuffer.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = Framebuffer.hpp; path = mediapipe/render/core/Framebuffer.hpp; sourceTree = ""; }; - AED7A97F76AD183E00000000 /* lib_idx_image_properties_calculator_gpu_service_6BF370A2_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_image_properties_calculator_gpu_service_6BF370A2_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F793CF2A000000000 /* lib_idx_annotation_overlay_calculator_7B50CB48_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_annotation_overlay_calculator_7B50CB48_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F79B4421A00000000 /* MPPMetalUtil.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MPPMetalUtil.h; path = mediapipe/gpu/MPPMetalUtil.h; sourceTree = ""; }; - AED7A97F79E3E67800000000 /* lib_idx_OlaFaceUnityLibrary_5CE49B93_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_OlaFaceUnityLibrary_5CE49B93_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F7C7A404400000000 /* gl_context.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gl_context.cc; path = mediapipe/gpu/gl_context.cc; sourceTree = ""; }; - AED7A97F7DD0DFE500000000 /* Target.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = Target.hpp; path = mediapipe/render/core/Target.hpp; sourceTree = ""; }; - AED7A97F7EA8AD8900000000 /* op_resolver.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = op_resolver.cc; path = mediapipe/util/tflite/op_resolver.cc; sourceTree = ""; }; - AED7A97F7EACDF6900000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/calculators/tflite/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - AED7A97F7EECC88600000000 /* lib_idx_op_resolver_E390FDC7_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_op_resolver_E390FDC7_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F7F7BF53600000000 /* vec2.inl */ = {isa = PBXFileReference; lastKnownFileType = "public.c-plus-plus-inline-header"; name = vec2.inl; path = mediapipe/render/core/math/vec2.inl; sourceTree = ""; }; - AED7A97F80F3BA4D00000000 /* 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 = ""; }; - AED7A97F815E3DC900000000 /* IOSTarget.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = IOSTarget.cpp; path = mediapipe/render/core/IOSTarget.cpp; sourceTree = ""; }; - AED7A97F8275616600000000 /* 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 = ""; }; - AED7A97F82E9D30000000000 /* MPPGraphGPUData.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MPPGraphGPUData.h; path = mediapipe/gpu/MPPGraphGPUData.h; sourceTree = ""; }; - AED7A97F8437B63D00000000 /* 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 = ""; }; - AED7A97F8537330500000000 /* 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 = ""; }; - AED7A97F8597B84200000000 /* callback_packet_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = callback_packet_calculator.cc; path = mediapipe/calculators/internal/callback_packet_calculator.cc; sourceTree = ""; }; - AED7A97F861C82C600000000 /* begin_loop_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = begin_loop_calculator.cc; path = mediapipe/calculators/core/begin_loop_calculator.cc; sourceTree = ""; }; - AED7A97F866604AE00000000 /* Source.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = Source.hpp; path = mediapipe/render/core/Source.hpp; sourceTree = ""; }; - AED7A97F8676234E00000000 /* lib_idx_MPPMetalHelper_7397E6A5_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_MPPMetalHelper_7397E6A5_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F871BF89200000000 /* 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 = ""; }; - AED7A97F87A2EB9600000000 /* lib_idx_inference_calculator_interface_inference_calculator_cpu_AEFE6570_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_inference_calculator_interface_inference_calculator_cpu_AEFE6570_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F87DFEA2300000000 /* OlaGraph.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = OlaGraph.cpp; path = mediapipe/render/module/common/OlaGraph.cpp; sourceTree = ""; }; - AED7A97F884B993900000000 /* 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 = ""; }; - AED7A97F8889ECD800000000 /* vec3.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = vec3.hpp; path = mediapipe/render/core/math/vec3.hpp; sourceTree = ""; }; - AED7A97F8A2AAB7400000000 /* tflite_model_loader.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tflite_model_loader.cc; path = mediapipe/util/tflite/tflite_model_loader.cc; sourceTree = ""; }; - AED7A97F8BBC9F7900000000 /* Ref.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Ref.cpp; path = mediapipe/render/core/Ref.cpp; sourceTree = ""; }; - AED7A97F8CDAAD8000000000 /* gl_base.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_base.h; path = mediapipe/gpu/gl_base.h; sourceTree = ""; }; - AED7A97F8D8DDBC600000000 /* lib_idx_inference_calculator_metal_712F45E9_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_inference_calculator_metal_712F45E9_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F8D8FA5E400000000 /* lib_idx_MPPMetalHelper_7397E6A5_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_MPPMetalHelper_7397E6A5_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F8E483A7800000000 /* lib_idx_MPPGraphGPUData_733A9D5A_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_MPPGraphGPUData_733A9D5A_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F8F0BA60200000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/render/module/beauty/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - AED7A97F8F4205CE00000000 /* lib_idx_inference_calculator_interface_inference_calculator_cpu_AEFE6570_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_inference_calculator_interface_inference_calculator_cpu_AEFE6570_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F8F79BD4A00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/gpu/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - AED7A97F8FE6AC8600000000 /* 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 = ""; }; - AED7A97F90EB5F4C00000000 /* landmarks_refinement_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = landmarks_refinement_calculator.h; path = mediapipe/calculators/util/landmarks_refinement_calculator.h; sourceTree = ""; }; - AED7A97F9199F03800000000 /* lib_idx_detection_projection_calculator_9B95E740_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_detection_projection_calculator_9B95E740_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F92727CA000000000 /* gpu_service.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gpu_service.cc; path = mediapipe/gpu/gpu_service.cc; sourceTree = ""; }; - AED7A97F932343DE00000000 /* FilterGroup.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = FilterGroup.hpp; path = mediapipe/render/core/FilterGroup.hpp; sourceTree = ""; }; - AED7A97F941107A700000000 /* thresholding_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = thresholding_calculator.cc; path = mediapipe/calculators/util/thresholding_calculator.cc; sourceTree = ""; }; - AED7A97F969C674A00000000 /* mat4.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mat4.cpp; path = mediapipe/render/core/math/mat4.cpp; sourceTree = ""; }; - AED7A97F96D677EC00000000 /* util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = util.h; path = mediapipe/objc/util.h; sourceTree = ""; }; - AED7A97F96E6076A00000000 /* Info.plist */ = {isa = PBXFileReference; explicitFileType = text.plist; name = Info.plist; path = "OlaFaceUnity.xcodeproj/.tulsi/tulsi-execution-root/bazel-tulsi-includes/x/x/mediapipe/render/module/beauty/ios/OlaFaceUnityFramework-intermediates/Info.plist"; sourceTree = SOURCE_ROOT; }; - AED7A97F97D718F200000000 /* lib_idx_inference_calculator_metal_712F45E9_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_inference_calculator_metal_712F45E9_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F97ED1FC700000000 /* gpu_buffer.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gpu_buffer.cc; path = mediapipe/gpu/gpu_buffer.cc; sourceTree = ""; }; - AED7A97F99018DD600000000 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_AB0D0716_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_AB0D0716_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F994837E700000000 /* resource_util_apple.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = resource_util_apple.cc; path = mediapipe/util/resource_util_apple.cc; sourceTree = ""; }; - AED7A97F9AA963CC00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/calculators/tensor/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - AED7A97F9B66645D00000000 /* tflite_model_loader.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = tflite_model_loader.h; path = mediapipe/util/tflite/tflite_model_loader.h; sourceTree = ""; }; - AED7A97F9B7D710200000000 /* image_to_tensor_utils.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = image_to_tensor_utils.h; path = mediapipe/calculators/tensor/image_to_tensor_utils.h; sourceTree = ""; }; - AED7A97F9BE1815200000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/util/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - AED7A97F9C7F492A00000000 /* lib_idx_non_max_suppression_calculator_EA803631_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_non_max_suppression_calculator_EA803631_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97F9CAAE49600000000 /* gl_context_internal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_context_internal.h; path = mediapipe/gpu/gl_context_internal.h; sourceTree = ""; }; - AED7A97F9CD3124800000000 /* gl_simple_shaders.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_simple_shaders.h; path = mediapipe/gpu/gl_simple_shaders.h; sourceTree = ""; }; - AED7A97F9DADC4EC00000000 /* gpu_buffer_storage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gpu_buffer_storage.h; path = mediapipe/gpu/gpu_buffer_storage.h; sourceTree = ""; }; - AED7A97F9FB0CCE200000000 /* TargetView.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = TargetView.hpp; path = mediapipe/render/core/TargetView.hpp; sourceTree = ""; }; - AED7A97FA101DE9B00000000 /* gl_texture_buffer_pool.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_texture_buffer_pool.h; path = mediapipe/gpu/gl_texture_buffer_pool.h; sourceTree = ""; }; - AED7A97FA18A895E00000000 /* config.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = config.h; path = mediapipe/util/tflite/config.h; sourceTree = ""; }; - AED7A97FA1BB1D7E00000000 /* lib_idx_gl_simple_shaders_6A91D77D_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_gl_simple_shaders_6A91D77D_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97FA1D1B51100000000 /* MPPGraph.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = MPPGraph.mm; path = mediapipe/objc/MPPGraph.mm; sourceTree = ""; }; - AED7A97FA23EAE8F00000000 /* NSError+util_status.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "NSError+util_status.mm"; path = "mediapipe/objc/NSError+util_status.mm"; sourceTree = ""; }; - AED7A97FA24D4E2600000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/render/module/beauty/ios/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - AED7A97FA2E9BD8400000000 /* Context.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = Context.hpp; path = mediapipe/render/core/Context.hpp; sourceTree = ""; }; - AED7A97FA42FD6CE00000000 /* transform_landmarks.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = transform_landmarks.cc; path = mediapipe/util/tflite/operations/transform_landmarks.cc; sourceTree = ""; }; - AED7A97FA4952BDE00000000 /* lib_idx_mediapipe_framework_ios_E5983FAB_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_mediapipe_framework_ios_E5983FAB_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97FA4F093DE00000000 /* lib_idx_MPPMetalUtil_E63D8158_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_MPPMetalUtil_E63D8158_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97FA54788E300000000 /* cpu_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cpu_util.cc; path = mediapipe/util/cpu_util.cc; sourceTree = ""; }; - AED7A97FA60E9BF200000000 /* split_vector_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = split_vector_calculator.cc; path = mediapipe/calculators/core/split_vector_calculator.cc; sourceTree = ""; }; - AED7A97FA7048F5200000000 /* lib_idx_image_to_tensor_converter_opencv_F40C896E_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_image_to_tensor_converter_opencv_F40C896E_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97FA843B95C00000000 /* lib_idx_image_properties_calculator_gpu_service_6BF370A2_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_image_properties_calculator_gpu_service_6BF370A2_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97FAAA2FE7000000000 /* gpu_buffer_storage.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gpu_buffer_storage.cc; path = mediapipe/gpu/gpu_buffer_storage.cc; sourceTree = ""; }; - AED7A97FAAB76E3900000000 /* gpu_buffer_storage_image_frame.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gpu_buffer_storage_image_frame.h; path = mediapipe/gpu/gpu_buffer_storage_image_frame.h; sourceTree = ""; }; - AED7A97FAAE0F57200000000 /* lib_idx_split_vector_calculator_6654799A_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_split_vector_calculator_6654799A_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97FAD31F37100000000 /* shader_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = shader_util.h; path = mediapipe/gpu/shader_util.h; sourceTree = ""; }; - AED7A97FAD72A5DA00000000 /* lib_idx_pixel_buffer_pool_util_1B0D8C74_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_pixel_buffer_pool_util_1B0D8C74_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97FAD93CF9C00000000 /* lib_idx_math_3043B97F_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_math_3043B97F_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97FADAE637800000000 /* to_image_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = to_image_calculator.cc; path = mediapipe/calculators/util/to_image_calculator.cc; sourceTree = ""; }; - AED7A97FADE5D13000000000 /* libmediapipe-render-module-beauty-ios-OlaFaceUnityLibrary.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = "libmediapipe-render-module-beauty-ios-OlaFaceUnityLibrary.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97FADF4C90200000000 /* lib_idx_pixel_buffer_pool_util_1B0D8C74_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_pixel_buffer_pool_util_1B0D8C74_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97FAE9D2F9F00000000 /* association_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = association_calculator.h; path = mediapipe/calculators/util/association_calculator.h; sourceTree = ""; }; - AED7A97FAF93AF3000000000 /* lib_idx_image_to_tensor_converter_opencv_F40C896E_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_image_to_tensor_converter_opencv_F40C896E_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97FB344F9F800000000 /* math.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = math.hpp; path = mediapipe/render/core/math.hpp; sourceTree = ""; }; - AED7A97FB4326CBC00000000 /* lib_idx_MPPMetalUtil_E63D8158_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_MPPMetalUtil_E63D8158_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97FB51C03B400000000 /* 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 = ""; }; - AED7A97FB77E32DB00000000 /* 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 = ""; }; - AED7A97FB913DCD000000000 /* lib_idx_FaceMeshGPULibrary_2BF20B88_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_FaceMeshGPULibrary_2BF20B88_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97FB98F90AE00000000 /* lib_idx_tflite_model_calculator_end_loop_calculator_6A228ACC_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_tflite_model_calculator_end_loop_calculator_6A228ACC_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97FB995807E00000000 /* op_resolver.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = op_resolver.h; path = mediapipe/util/tflite/op_resolver.h; sourceTree = ""; }; - AED7A97FB9BC893200000000 /* lib_idx_cpu_util_B64315B8_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_cpu_util_B64315B8_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97FBB00542E00000000 /* lib_idx_tflite_custom_op_resolver_calculator_042597A8_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_tflite_custom_op_resolver_calculator_042597A8_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97FBCC8613800000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/util/tflite/operations/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - AED7A97FBDE8EA7C00000000 /* 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 = ""; }; - AED7A97FBEE6626C00000000 /* lib_idx_FaceMeshGPULibrary_2BF20B88_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_FaceMeshGPULibrary_2BF20B88_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97FBF1EA75800000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/calculators/util/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - AED7A97FBF4071C200000000 /* gl_calculator_helper_impl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_calculator_helper_impl.h; path = mediapipe/gpu/gl_calculator_helper_impl.h; sourceTree = ""; }; - AED7A97FC0E755D400000000 /* lib_idx_split_vector_calculator_6654799A_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_split_vector_calculator_6654799A_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97FC12B324000000000 /* cpu_op_resolver.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = cpu_op_resolver.h; path = mediapipe/util/tflite/cpu_op_resolver.h; sourceTree = ""; }; - AED7A97FC1724CB400000000 /* math_utils.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = math_utils.hpp; path = mediapipe/render/core/math/math_utils.hpp; sourceTree = ""; }; - AED7A97FC2113DD500000000 /* 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 = ""; }; - AED7A97FC4B69F3800000000 /* flow_limiter_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = flow_limiter_calculator.cc; path = mediapipe/calculators/core/flow_limiter_calculator.cc; sourceTree = ""; }; - AED7A97FC4F2652200000000 /* lib_idx_MPPGraphGPUData_733A9D5A_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_MPPGraphGPUData_733A9D5A_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97FC56C6E9000000000 /* lib_idx_max_unpooling_max_pool_argmax_92E156D6_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_max_unpooling_max_pool_argmax_92E156D6_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97FC56FBE0A00000000 /* lib_idx_core_core-ios_4EDC2AF0_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = "lib_idx_core_core-ios_4EDC2AF0_ios_min11.0.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97FC6B713FC00000000 /* 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 = ""; }; - AED7A97FC87753C600000000 /* lib_idx_clip_vector_size_calculator_02FA2733_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_clip_vector_size_calculator_02FA2733_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97FC8F4B9E000000000 /* lib_idx_cpu_util_B64315B8_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_cpu_util_B64315B8_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97FC905FCC400000000 /* gl_context_eagl.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gl_context_eagl.cc; path = mediapipe/gpu/gl_context_eagl.cc; sourceTree = ""; }; - AED7A97FCC9C8CEA00000000 /* lib_idx_tflite_model_calculator_end_loop_calculator_6A228ACC_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_tflite_model_calculator_end_loop_calculator_6A228ACC_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97FCCF9B5CC00000000 /* lib_idx_tflite_custom_op_resolver_calculator_042597A8_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_tflite_custom_op_resolver_calculator_042597A8_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97FCD95B30F00000000 /* gate_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gate_calculator.cc; path = mediapipe/calculators/core/gate_calculator.cc; sourceTree = ""; }; - AED7A97FCEAD353700000000 /* gl_texture_buffer_pool.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gl_texture_buffer_pool.cc; path = mediapipe/gpu/gl_texture_buffer_pool.cc; sourceTree = ""; }; - AED7A97FCFB0DD5600000000 /* lib_idx_tensors_to_detections_calculator_888E512F_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_tensors_to_detections_calculator_888E512F_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97FCFCBE3A500000000 /* Weakify.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = Weakify.h; path = mediapipe/objc/Weakify.h; sourceTree = ""; }; - AED7A97FD02AC36400000000 /* vec3.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vec3.cpp; path = mediapipe/render/core/math/vec3.cpp; sourceTree = ""; }; - AED7A97FD11B226900000000 /* resource_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = resource_util.h; path = mediapipe/util/resource_util.h; sourceTree = ""; }; - AED7A97FD11E82F000000000 /* 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 = ""; }; - AED7A97FD16A91CE00000000 /* lib_idx_cpu_op_resolver_741B9450_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_cpu_op_resolver_741B9450_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97FD3B4F92F00000000 /* gpu_shared_data_internal.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gpu_shared_data_internal.cc; path = mediapipe/gpu/gpu_shared_data_internal.cc; sourceTree = ""; }; - AED7A97FD4527DC400000000 /* vec4.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = vec4.hpp; path = mediapipe/render/core/math/vec4.hpp; sourceTree = ""; }; - AED7A97FD487255900000000 /* Filter.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = Filter.hpp; path = mediapipe/render/core/Filter.hpp; sourceTree = ""; }; - AED7A97FD4E094CE00000000 /* MPPMetalHelper.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MPPMetalHelper.h; path = mediapipe/gpu/MPPMetalHelper.h; sourceTree = ""; }; - AED7A97FD57A06BE00000000 /* inference_calculator_metal.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = inference_calculator_metal.cc; path = mediapipe/calculators/tensor/inference_calculator_metal.cc; sourceTree = ""; }; - AED7A97FD5C38D7700000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/objc/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - AED7A97FD8CB6F0000000000 /* gpu_buffer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gpu_buffer.h; path = mediapipe/gpu/gpu_buffer.h; sourceTree = ""; }; - AED7A97FD9D8267100000000 /* annotation_renderer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = annotation_renderer.h; path = mediapipe/util/annotation_renderer.h; sourceTree = ""; }; - AED7A97FDA1E3CA600000000 /* lib_idx_detection_projection_calculator_9B95E740_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_detection_projection_calculator_9B95E740_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97FDB65E5C000000000 /* image_to_tensor_converter_metal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = image_to_tensor_converter_metal.h; path = mediapipe/calculators/tensor/image_to_tensor_converter_metal.h; sourceTree = ""; }; - AED7A97FDCB5CFF600000000 /* 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_A15F304E_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_A15F304E_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97FDCFC782600000000 /* lib_idx_ref_gpuimagemath_gpuimageutil_8BF43A5D_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_ref_gpuimagemath_gpuimageutil_8BF43A5D_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97FDD0DC0C900000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/calculators/internal/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - AED7A97FDD1949C800000000 /* lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_7ED8D1B5_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_7ED8D1B5_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97FDDB0EF7500000000 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; name = Info.plist; path = mediapipe/render/module/beauty/ios/Info.plist; sourceTree = ""; }; - AED7A97FDE84DAA600000000 /* lib_idx_image_to_tensor_calculator_C3DB5E1E_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_image_to_tensor_calculator_C3DB5E1E_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97FDEC9C83500000000 /* 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 = ""; }; - AED7A97FE04A951600000000 /* SourceImage.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SourceImage.cpp; path = mediapipe/render/core/SourceImage.cpp; sourceTree = ""; }; - AED7A97FE2F8115C00000000 /* lib_idx_OlaFaceUnityLibrary_5CE49B93_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_OlaFaceUnityLibrary_5CE49B93_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97FE5A048F400000000 /* OlaFaceUnity.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = OlaFaceUnity.mm; path = mediapipe/render/module/beauty/ios/OlaFaceUnity.mm; sourceTree = ""; }; - AED7A97FE5E909D200000000 /* lib_idx_shader_util_F77AE4F3_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_shader_util_F77AE4F3_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97FE647888200000000 /* resource_util_internal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = resource_util_internal.h; path = mediapipe/util/resource_util_internal.h; sourceTree = ""; }; - AED7A97FE86F350A00000000 /* NSError+util_status.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "NSError+util_status.h"; path = "mediapipe/objc/NSError+util_status.h"; sourceTree = ""; }; - AED7A97FE8D550C300000000 /* GLProgram.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = GLProgram.cpp; path = mediapipe/render/core/GLProgram.cpp; sourceTree = ""; }; - AED7A97FEB1D946B00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/render/core/math/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - AED7A97FEB454D0800000000 /* lib_idx_tflite_model_loader_F900857E_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_tflite_model_loader_F900857E_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97FEB4C12EA00000000 /* tflite_model_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tflite_model_calculator.cc; path = mediapipe/calculators/tflite/tflite_model_calculator.cc; sourceTree = ""; }; - AED7A97FEB6CA5E900000000 /* begin_loop_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = begin_loop_calculator.h; path = mediapipe/calculators/core/begin_loop_calculator.h; sourceTree = ""; }; - AED7A97FEB99912A00000000 /* gl_texture_buffer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_texture_buffer.h; path = mediapipe/gpu/gl_texture_buffer.h; sourceTree = ""; }; - AED7A97FEBDBE6FA00000000 /* detection_projection_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = detection_projection_calculator.cc; path = mediapipe/calculators/util/detection_projection_calculator.cc; sourceTree = ""; }; - AED7A97FEDAA79AC00000000 /* lib_idx_gl_calculator_helper_D8986C65_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_gl_calculator_helper_D8986C65_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97FF06E61C200000000 /* lib_idx_olamodule_common_library_4A2D4D8A_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_olamodule_common_library_4A2D4D8A_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97FF1F248B600000000 /* 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 = ""; }; - AED7A97FF2D261CD00000000 /* 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 = ""; }; - AED7A97FF306D45600000000 /* OlaGraph.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = OlaGraph.hpp; path = mediapipe/render/module/common/OlaGraph.hpp; sourceTree = ""; }; - AED7A97FF31FC2AD00000000 /* image_to_tensor_utils.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = image_to_tensor_utils.cc; path = mediapipe/calculators/tensor/image_to_tensor_utils.cc; sourceTree = ""; }; - AED7A97FF382926900000000 /* SourceCamera.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SourceCamera.cpp; path = mediapipe/render/core/SourceCamera.cpp; sourceTree = ""; }; - AED7A97FF5DC96EC00000000 /* lib_idx_gpu_buffer_storage_gpu_buffer_format_BA46520A_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_gpu_buffer_storage_gpu_buffer_format_BA46520A_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97FF7565D9800000000 /* split_vector_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = split_vector_calculator.h; path = mediapipe/calculators/core/split_vector_calculator.h; sourceTree = ""; }; - AED7A97FF82E717F00000000 /* gpu_buffer_storage_cv_pixel_buffer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gpu_buffer_storage_cv_pixel_buffer.h; path = mediapipe/gpu/gpu_buffer_storage_cv_pixel_buffer.h; sourceTree = ""; }; - AED7A97FF83CF85400000000 /* lib_idx_transpose_conv_bias_207EFBC1_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_transpose_conv_bias_207EFBC1_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97FF8761CBE00000000 /* lib_idx_annotation_overlay_calculator_7B50CB48_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_annotation_overlay_calculator_7B50CB48_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AED7A97FF89FECF800000000 /* 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 = ""; }; - AED7A97FF8C96D3D00000000 /* gl_texture_buffer.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gl_texture_buffer.cc; path = mediapipe/gpu/gl_texture_buffer.cc; sourceTree = ""; }; - AED7A97FF92BBDBD00000000 /* GLProgram.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = GLProgram.hpp; path = mediapipe/render/core/GLProgram.hpp; sourceTree = ""; }; - AED7A97FFA696A6900000000 /* gpu_shared_data_internal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gpu_shared_data_internal.h; path = mediapipe/gpu/gpu_shared_data_internal.h; sourceTree = ""; }; - AED7A97FFAB2EC1300000000 /* FilterGroup.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = FilterGroup.cpp; path = mediapipe/render/core/FilterGroup.cpp; sourceTree = ""; }; - AED7A97FFBEF99EE00000000 /* image_to_tensor_converter_metal.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = image_to_tensor_converter_metal.cc; path = mediapipe/calculators/tensor/image_to_tensor_converter_metal.cc; sourceTree = ""; }; - AED7A97FFC0EF90200000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/calculators/core/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - AED7A97FFC48A85B00000000 /* cpu_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = cpu_util.h; path = mediapipe/util/cpu_util.h; sourceTree = ""; }; - AED7A97FFCDA188900000000 /* gpu_buffer_storage_cv_pixel_buffer.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gpu_buffer_storage_cv_pixel_buffer.cc; path = mediapipe/gpu/gpu_buffer_storage_cv_pixel_buffer.cc; sourceTree = ""; }; - AED7A97FFD01374900000000 /* gpu_service.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gpu_service.h; path = mediapipe/gpu/gpu_service.h; sourceTree = ""; }; - AED7A97FFD2C140F00000000 /* image_properties_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = image_properties_calculator.cc; path = mediapipe/calculators/image/image_properties_calculator.cc; sourceTree = ""; }; - AED7A97FFD4A17F100000000 /* gl_calculator_helper.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_calculator_helper.h; path = mediapipe/gpu/gl_calculator_helper.h; sourceTree = ""; }; - AED7A97FFDD4D82600000000 /* max_unpooling.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = max_unpooling.h; path = mediapipe/util/tflite/operations/max_unpooling.h; sourceTree = ""; }; - AED7A97FFF2AB57800000000 /* lib_idx_previous_loopback_calculator_header_util_D9AEB78A_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_previous_loopback_calculator_header_util_D9AEB78A_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E004ED87500000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/objc/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + 8F62469E00E42C1500000000 /* config.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = config.h; path = mediapipe/util/tflite/config.h; sourceTree = ""; }; + 8F62469E013DE90000000000 /* lib_idx_annotation_overlay_calculator_7772C341_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_annotation_overlay_calculator_7772C341_ios_min15.5.a; path = lib_idx_annotation_overlay_calculator_7772C341_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E0156E7A600000000 /* vec2.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vec2.cpp; path = mediapipe/render/core/math/vec2.cpp; sourceTree = ""; }; + 8F62469E01C72EAB00000000 /* mat4.inl */ = {isa = PBXFileReference; lastKnownFileType = "public.c-plus-plus-inline-header"; name = mat4.inl; path = mediapipe/render/core/math/mat4.inl; sourceTree = ""; }; + 8F62469E029424C000000000 /* lib_idx_cpu_op_resolver_E63A3714_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_cpu_op_resolver_E63A3714_ios_min11.0.a; path = lib_idx_cpu_op_resolver_E63A3714_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E032AE7D900000000 /* inference_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = inference_calculator.h; path = mediapipe/calculators/tensor/inference_calculator.h; sourceTree = ""; }; + 8F62469E0592E24D00000000 /* mat4.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mat4.cpp; path = mediapipe/render/core/math/mat4.cpp; sourceTree = ""; }; + 8F62469E07AA7C9800000000 /* lib_idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min15.5.a; path = lib_idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E085F8F9000000000 /* lib_idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min11.0.a; path = lib_idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E094AB7D000000000 /* Weakify.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = Weakify.h; path = mediapipe/objc/Weakify.h; sourceTree = ""; }; + 8F62469E096C09DF00000000 /* transform_landmarks.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = transform_landmarks.cc; path = mediapipe/util/tflite/operations/transform_landmarks.cc; sourceTree = ""; }; + 8F62469E0B995C7D00000000 /* SourceImage.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = SourceImage.hpp; path = mediapipe/render/core/SourceImage.hpp; sourceTree = ""; }; + 8F62469E0C5B6D7000000000 /* non_max_suppression_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = non_max_suppression_calculator.cc; path = mediapipe/calculators/util/non_max_suppression_calculator.cc; sourceTree = ""; }; + 8F62469E0CD245CA00000000 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min15.5.a; path = lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E0CEA424A00000000 /* lib_idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min15.5.a; path = lib_idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E0CFA3AED00000000 /* max_pool_argmax.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = max_pool_argmax.h; path = mediapipe/util/tflite/operations/max_pool_argmax.h; sourceTree = ""; }; + 8F62469E0EA9897400000000 /* lib_idx_gl_simple_shaders_2CB9CEAD_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_gl_simple_shaders_2CB9CEAD_ios_min11.0.a; path = lib_idx_gl_simple_shaders_2CB9CEAD_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E0F3F7D7100000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/calculators/image/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + 8F62469E0FFB16DF00000000 /* collection_has_min_size_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = collection_has_min_size_calculator.h; path = mediapipe/calculators/util/collection_has_min_size_calculator.h; sourceTree = ""; }; + 8F62469E10398DD500000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/gpu/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + 8F62469E1046F3BF00000000 /* MPPMetalUtil.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MPPMetalUtil.h; path = mediapipe/gpu/MPPMetalUtil.h; sourceTree = ""; }; + 8F62469E10E53D4400000000 /* lib_idx_tflite_model_loader_6F62D289_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tflite_model_loader_6F62D289_ios_min11.0.a; path = lib_idx_tflite_model_loader_6F62D289_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E13423C4400000000 /* landmarks_to_detection_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = landmarks_to_detection_calculator.cc; path = mediapipe/calculators/util/landmarks_to_detection_calculator.cc; sourceTree = ""; }; + 8F62469E134BBB5F00000000 /* inference_calculator_metal.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = inference_calculator_metal.cc; path = mediapipe/calculators/tensor/inference_calculator_metal.cc; sourceTree = ""; }; + 8F62469E1370E16B00000000 /* cpu_op_resolver.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cpu_op_resolver.cc; path = mediapipe/util/tflite/cpu_op_resolver.cc; sourceTree = ""; }; + 8F62469E14D6DD8600000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/util/tflite/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + 8F62469E1601B9F400000000 /* math.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = math.hpp; path = mediapipe/render/core/math.hpp; sourceTree = ""; }; + 8F62469E17399DDC00000000 /* lib_idx_MPPMetalHelper_8A6739B5_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_MPPMetalHelper_8A6739B5_ios_min11.0.a; path = lib_idx_MPPMetalHelper_8A6739B5_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E18FF939300000000 /* split_vector_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = split_vector_calculator.cc; path = mediapipe/calculators/core/split_vector_calculator.cc; sourceTree = ""; }; + 8F62469E1AA4F1AC00000000 /* gl_simple_shaders.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gl_simple_shaders.cc; path = mediapipe/gpu/gl_simple_shaders.cc; sourceTree = ""; }; + 8F62469E1B33088D00000000 /* cpu_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = cpu_util.h; path = mediapipe/util/cpu_util.h; sourceTree = ""; }; + 8F62469E1CCA511900000000 /* image_to_tensor_converter_metal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = image_to_tensor_converter_metal.h; path = mediapipe/calculators/tensor/image_to_tensor_converter_metal.h; sourceTree = ""; }; + 8F62469E1DE1C67300000000 /* gl_texture_view.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_texture_view.h; path = mediapipe/gpu/gl_texture_view.h; sourceTree = ""; }; + 8F62469E1E08E4F200000000 /* annotation_renderer.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = annotation_renderer.cc; path = mediapipe/util/annotation_renderer.cc; sourceTree = ""; }; + 8F62469E1E29E90E00000000 /* lib_idx_OlaFaceUnityLibrary_63B2D14F_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_OlaFaceUnityLibrary_63B2D14F_ios_min15.5.a; path = lib_idx_OlaFaceUnityLibrary_63B2D14F_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E1E79ACEC00000000 /* lib_idx_mediapipe_framework_ios_596FA5D1_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_mediapipe_framework_ios_596FA5D1_ios_min15.5.a; path = lib_idx_mediapipe_framework_ios_596FA5D1_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E20BF236600000000 /* end_loop_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = end_loop_calculator.h; path = mediapipe/calculators/core/end_loop_calculator.h; sourceTree = ""; }; + 8F62469E2111801D00000000 /* vec2.inl */ = {isa = PBXFileReference; lastKnownFileType = "public.c-plus-plus-inline-header"; name = vec2.inl; path = mediapipe/render/core/math/vec2.inl; sourceTree = ""; }; + 8F62469E2226086B00000000 /* gl_simple_shaders.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_simple_shaders.h; path = mediapipe/gpu/gl_simple_shaders.h; sourceTree = ""; }; + 8F62469E225F8AC300000000 /* callback_packet_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = callback_packet_calculator.cc; path = mediapipe/calculators/internal/callback_packet_calculator.cc; sourceTree = ""; }; + 8F62469E22A87E2800000000 /* SourceCamera.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = SourceCamera.hpp; path = mediapipe/render/core/SourceCamera.hpp; sourceTree = ""; }; + 8F62469E2451D66600000000 /* lib_idx_tensors_to_detections_calculator_B4C99DEA_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tensors_to_detections_calculator_B4C99DEA_ios_min11.0.a; path = lib_idx_tensors_to_detections_calculator_B4C99DEA_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E2503320C00000000 /* lib_idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min15.5.a; path = lib_idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E259898F600000000 /* rect_to_render_data_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = rect_to_render_data_calculator.cc; path = mediapipe/calculators/util/rect_to_render_data_calculator.cc; sourceTree = ""; }; + 8F62469E261F021200000000 /* clip_vector_size_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = clip_vector_size_calculator.h; path = mediapipe/calculators/core/clip_vector_size_calculator.h; sourceTree = ""; }; + 8F62469E2665A36C00000000 /* transpose_conv_bias.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = transpose_conv_bias.h; path = mediapipe/util/tflite/operations/transpose_conv_bias.h; sourceTree = ""; }; + 8F62469E267D173700000000 /* constant_side_packet_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = constant_side_packet_calculator.cc; path = mediapipe/calculators/core/constant_side_packet_calculator.cc; sourceTree = ""; }; + 8F62469E29F2D5B300000000 /* inference_calculator_cpu.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = inference_calculator_cpu.cc; path = mediapipe/calculators/tensor/inference_calculator_cpu.cc; sourceTree = ""; }; + 8F62469E2A101FF000000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/calculators/core/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + 8F62469E2B9C383A00000000 /* lib_idx_mediapipe_framework_ios_596FA5D1_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_mediapipe_framework_ios_596FA5D1_ios_min11.0.a; path = lib_idx_mediapipe_framework_ios_596FA5D1_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E2BADC1D200000000 /* lib_idx_MPPMetalUtil_622319D3_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_MPPMetalUtil_622319D3_ios_min15.5.a; path = lib_idx_MPPMetalUtil_622319D3_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E2CF83E7600000000 /* image_to_tensor_utils.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = image_to_tensor_utils.cc; path = mediapipe/calculators/tensor/image_to_tensor_utils.cc; sourceTree = ""; }; + 8F62469E2DD9171300000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/modules/face_detection/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + 8F62469E2E2AC0E200000000 /* gpu_buffer_multi_pool.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gpu_buffer_multi_pool.h; path = mediapipe/gpu/gpu_buffer_multi_pool.h; sourceTree = ""; }; + 8F62469E2E4BDDE900000000 /* gpu_buffer_storage_image_frame.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gpu_buffer_storage_image_frame.h; path = mediapipe/gpu/gpu_buffer_storage_image_frame.h; sourceTree = ""; }; + 8F62469E2E87CC4E00000000 /* Target.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Target.cpp; path = mediapipe/render/core/Target.cpp; sourceTree = ""; }; + 8F62469E2E9744D600000000 /* gpu_buffer_storage.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gpu_buffer_storage.cc; path = mediapipe/gpu/gpu_buffer_storage.cc; sourceTree = ""; }; + 8F62469E2F07C29D00000000 /* FramebufferCache.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = FramebufferCache.hpp; path = mediapipe/render/core/FramebufferCache.hpp; sourceTree = ""; }; + 8F62469E2F39A2D500000000 /* gpu_buffer_multi_pool.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gpu_buffer_multi_pool.cc; path = mediapipe/gpu/gpu_buffer_multi_pool.cc; sourceTree = ""; }; + 8F62469E3087FAEC00000000 /* detections_to_rects_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = detections_to_rects_calculator.h; path = mediapipe/calculators/util/detections_to_rects_calculator.h; sourceTree = ""; }; + 8F62469E3099305600000000 /* image_to_tensor_utils.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = image_to_tensor_utils.h; path = mediapipe/calculators/tensor/image_to_tensor_utils.h; sourceTree = ""; }; + 8F62469E3101686800000000 /* max_unpooling.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = max_unpooling.h; path = mediapipe/util/tflite/operations/max_unpooling.h; sourceTree = ""; }; + 8F62469E3216363400000000 /* lib_idx_math_661952D5_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_math_661952D5_ios_min11.0.a; path = lib_idx_math_661952D5_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E3355B24600000000 /* split_vector_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = split_vector_calculator.h; path = mediapipe/calculators/core/split_vector_calculator.h; sourceTree = ""; }; + 8F62469E33969E5B00000000 /* gl_texture_buffer_pool.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_texture_buffer_pool.h; path = mediapipe/gpu/gl_texture_buffer_pool.h; sourceTree = ""; }; + 8F62469E34B8327500000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/calculators/util/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + 8F62469E3564243100000000 /* MPPGraphGPUData.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MPPGraphGPUData.h; path = mediapipe/gpu/MPPGraphGPUData.h; sourceTree = ""; }; + 8F62469E357DD06500000000 /* pixel_buffer_pool_util.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = pixel_buffer_pool_util.mm; path = mediapipe/gpu/pixel_buffer_pool_util.mm; sourceTree = ""; }; + 8F62469E369A201C00000000 /* shader_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shader_util.cc; path = mediapipe/gpu/shader_util.cc; sourceTree = ""; }; + 8F62469E36A1BCF500000000 /* FilterGroup.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = FilterGroup.cpp; path = mediapipe/render/core/FilterGroup.cpp; sourceTree = ""; }; + 8F62469E3950B88400000000 /* GPUImageUtil.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = GPUImageUtil.cpp; path = mediapipe/render/core/GPUImageUtil.cpp; sourceTree = ""; }; + 8F62469E3AE818C400000000 /* lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min11.0.a; path = lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E3D8600BC00000000 /* landmarks_refinement_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = landmarks_refinement_calculator.h; path = mediapipe/calculators/util/landmarks_refinement_calculator.h; sourceTree = ""; }; + 8F62469E3EF5E91200000000 /* transform_tensor_bilinear.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = transform_tensor_bilinear.cc; path = mediapipe/util/tflite/operations/transform_tensor_bilinear.cc; sourceTree = ""; }; + 8F62469E3FBDA1BA00000000 /* lib_idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min11.0.a; path = lib_idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E3FEF732500000000 /* header_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = header_util.cc; path = mediapipe/util/header_util.cc; sourceTree = ""; }; + 8F62469E3FF92D1600000000 /* lib_idx_detection_projection_calculator_07107D71_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_detection_projection_calculator_07107D71_ios_min15.5.a; path = lib_idx_detection_projection_calculator_07107D71_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E403A0ACA00000000 /* Source.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Source.cpp; path = mediapipe/render/core/Source.cpp; sourceTree = ""; }; + 8F62469E42538A8300000000 /* FramebufferCache.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = FramebufferCache.cpp; path = mediapipe/render/core/FramebufferCache.cpp; sourceTree = ""; }; + 8F62469E426BAE8A00000000 /* face_mesh_module.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = face_mesh_module.h; path = mediapipe/render/module/beauty/face_mesh_module.h; sourceTree = ""; }; + 8F62469E43717CCB00000000 /* gl_base.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_base.h; path = mediapipe/gpu/gl_base.h; sourceTree = ""; }; + 8F62469E438E204A00000000 /* face_landmark_with_attention.tflite */ = {isa = PBXFileReference; lastKnownFileType = dyn.age81k3xqrf4gn; name = face_landmark_with_attention.tflite; path = mediapipe/modules/face_landmark/face_landmark_with_attention.tflite; sourceTree = ""; }; + 8F62469E43C533AA00000000 /* lib_idx_begin_loop_calculator_55C0335F_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_begin_loop_calculator_55C0335F_ios_min15.5.a; path = lib_idx_begin_loop_calculator_55C0335F_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E44C7D79C00000000 /* vec4.inl */ = {isa = PBXFileReference; lastKnownFileType = "public.c-plus-plus-inline-header"; name = vec4.inl; path = mediapipe/render/core/math/vec4.inl; sourceTree = ""; }; + 8F62469E46E60CF500000000 /* Ref.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = Ref.hpp; path = mediapipe/render/core/Ref.hpp; sourceTree = ""; }; + 8F62469E470DC89E00000000 /* cpu_op_resolver.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = cpu_op_resolver.h; path = mediapipe/util/tflite/cpu_op_resolver.h; sourceTree = ""; }; + 8F62469E47AA7F8A00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/graphs/face_mesh/calculators/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + 8F62469E482738F100000000 /* header_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = header_util.h; path = mediapipe/util/header_util.h; sourceTree = ""; }; + 8F62469E4863BAE900000000 /* transform_landmarks.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = transform_landmarks.h; path = mediapipe/util/tflite/operations/transform_landmarks.h; sourceTree = ""; }; + 8F62469E489C692A00000000 /* gpu_buffer_storage_cv_pixel_buffer.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gpu_buffer_storage_cv_pixel_buffer.cc; path = mediapipe/gpu/gpu_buffer_storage_cv_pixel_buffer.cc; sourceTree = ""; }; + 8F62469E48E4E18100000000 /* MPPTimestampConverter.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = MPPTimestampConverter.mm; path = mediapipe/objc/MPPTimestampConverter.mm; sourceTree = ""; }; + 8F62469E4907602900000000 /* GPUImageUtil.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = GPUImageUtil.h; path = mediapipe/render/core/GPUImageUtil.h; sourceTree = ""; }; + 8F62469E49E053D400000000 /* lib_idx_image_to_tensor_calculator_77E4634D_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_to_tensor_calculator_77E4634D_ios_min11.0.a; path = lib_idx_image_to_tensor_calculator_77E4634D_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E4AFAD92200000000 /* gl_context_eagl.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gl_context_eagl.cc; path = mediapipe/gpu/gl_context_eagl.cc; sourceTree = ""; }; + 8F62469E4BC5B6E000000000 /* lib_idx_non_max_suppression_calculator_E0C32C58_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_non_max_suppression_calculator_E0C32C58_ios_min11.0.a; path = lib_idx_non_max_suppression_calculator_E0C32C58_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E4C094F0A00000000 /* util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = util.cc; path = mediapipe/objc/util.cc; sourceTree = ""; }; + 8F62469E4CC6C91400000000 /* face_mesh_module.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = face_mesh_module.cc; path = mediapipe/render/module/beauty/face_mesh_module.cc; sourceTree = ""; }; + 8F62469E4CCA495100000000 /* SourceImage.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SourceImage.cpp; path = mediapipe/render/core/SourceImage.cpp; sourceTree = ""; }; + 8F62469E4E319F4100000000 /* face_detection_short_range.tflite */ = {isa = PBXFileReference; lastKnownFileType = dyn.age81k3xqrf4gn; name = face_detection_short_range.tflite; path = mediapipe/modules/face_detection/face_detection_short_range.tflite; sourceTree = ""; }; + 8F62469E4EEECC8300000000 /* Context.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = Context.hpp; path = mediapipe/render/core/Context.hpp; sourceTree = ""; }; + 8F62469E50B7221100000000 /* CVFramebuffer.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = CVFramebuffer.hpp; path = mediapipe/render/core/CVFramebuffer.hpp; sourceTree = ""; }; + 8F62469E50FA3B1400000000 /* tflite_model_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tflite_model_calculator.cc; path = mediapipe/calculators/tflite/tflite_model_calculator.cc; sourceTree = ""; }; + 8F62469E51E896DC00000000 /* lib_idx_op_resolver_29CCF89E_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_op_resolver_29CCF89E_ios_min15.5.a; path = lib_idx_op_resolver_29CCF89E_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E5202380400000000 /* lib_idx_pixel_buffer_pool_util_C139F8B5_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_pixel_buffer_pool_util_C139F8B5_ios_min11.0.a; path = lib_idx_pixel_buffer_pool_util_C139F8B5_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E53BB6A1B00000000 /* clip_vector_size_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = clip_vector_size_calculator.cc; path = mediapipe/calculators/core/clip_vector_size_calculator.cc; sourceTree = ""; }; + 8F62469E53F441A800000000 /* cpu_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cpu_util.cc; path = mediapipe/util/cpu_util.cc; sourceTree = ""; }; + 8F62469E5426685200000000 /* GLProgram.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = GLProgram.hpp; path = mediapipe/render/core/GLProgram.hpp; sourceTree = ""; }; + 8F62469E549B74DB00000000 /* image_to_tensor_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = image_to_tensor_calculator.cc; path = mediapipe/calculators/tensor/image_to_tensor_calculator.cc; sourceTree = ""; }; + 8F62469E5771EFBD00000000 /* Framebuffer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Framebuffer.cpp; path = mediapipe/render/core/Framebuffer.cpp; sourceTree = ""; }; + 8F62469E57CDD24300000000 /* ssd_anchors_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ssd_anchors_calculator.cc; path = mediapipe/calculators/tflite/ssd_anchors_calculator.cc; sourceTree = ""; }; + 8F62469E5825859100000000 /* gl_texture_buffer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_texture_buffer.h; path = mediapipe/gpu/gl_texture_buffer.h; sourceTree = ""; }; + 8F62469E589A330C00000000 /* lib_idx_image_to_tensor_converter_metal_A1DB3550_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_to_tensor_converter_metal_A1DB3550_ios_min15.5.a; path = lib_idx_image_to_tensor_converter_metal_A1DB3550_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E5A5CE83A00000000 /* gl_calculator_helper_impl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_calculator_helper_impl.h; path = mediapipe/gpu/gl_calculator_helper_impl.h; sourceTree = ""; }; + 8F62469E5A86F8CA00000000 /* lib_idx_image_to_tensor_converter_opencv_1FC75D94_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_to_tensor_converter_opencv_1FC75D94_ios_min11.0.a; path = lib_idx_image_to_tensor_converter_opencv_1FC75D94_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E5B357FC400000000 /* OlaFaceUnityFramework.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; name = OlaFaceUnityFramework.framework; path = OlaFaceUnityFramework.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E5BC465A400000000 /* lib_idx_MPPMetalHelper_8A6739B5_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_MPPMetalHelper_8A6739B5_ios_min15.5.a; path = lib_idx_MPPMetalHelper_8A6739B5_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E5D4491B500000000 /* resource_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = resource_util.cc; path = mediapipe/util/resource_util.cc; sourceTree = ""; }; + 8F62469E5EECF1D200000000 /* image_to_tensor_converter_opencv.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = image_to_tensor_converter_opencv.h; path = mediapipe/calculators/tensor/image_to_tensor_converter_opencv.h; sourceTree = ""; }; + 8F62469E60EAFF9D00000000 /* rectangle_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = rectangle_util.cc; path = mediapipe/util/rectangle_util.cc; sourceTree = ""; }; + 8F62469E610A735200000000 /* lib_idx_annotation_renderer_1DCBFDF7_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_annotation_renderer_1DCBFDF7_ios_min11.0.a; path = lib_idx_annotation_renderer_1DCBFDF7_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E61F8D8DE00000000 /* detection_projection_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = detection_projection_calculator.cc; path = mediapipe/calculators/util/detection_projection_calculator.cc; sourceTree = ""; }; + 8F62469E62CE283E00000000 /* lib_idx_olamodule_common_library_9ADAC3A9_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_olamodule_common_library_9ADAC3A9_ios_min11.0.a; path = lib_idx_olamodule_common_library_9ADAC3A9_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E6328969D00000000 /* Context.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Context.cpp; path = mediapipe/render/core/Context.cpp; sourceTree = ""; }; + 8F62469E635CAFD500000000 /* image_to_tensor_converter_metal.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = image_to_tensor_converter_metal.cc; path = mediapipe/calculators/tensor/image_to_tensor_converter_metal.cc; sourceTree = ""; }; + 8F62469E6414206900000000 /* tensors_to_detections_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tensors_to_detections_calculator.cc; path = mediapipe/calculators/tensor/tensors_to_detections_calculator.cc; sourceTree = ""; }; + 8F62469E64A7F94D00000000 /* math.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = math.cpp; path = mediapipe/render/core/math.cpp; sourceTree = ""; }; + 8F62469E64AF57E400000000 /* lib_idx_math_661952D5_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_math_661952D5_ios_min15.5.a; path = lib_idx_math_661952D5_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E6562E89600000000 /* lib_idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min15.5.a; path = lib_idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E658A4F0A00000000 /* gpu_buffer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gpu_buffer.h; path = mediapipe/gpu/gpu_buffer.h; sourceTree = ""; }; + 8F62469E6661607500000000 /* tflite_model_loader.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = tflite_model_loader.h; path = mediapipe/util/tflite/tflite_model_loader.h; sourceTree = ""; }; + 8F62469E66FF33FC00000000 /* lib_idx_max_unpooling_max_pool_argmax_09627F19_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_max_unpooling_max_pool_argmax_09627F19_ios_min15.5.a; path = lib_idx_max_unpooling_max_pool_argmax_09627F19_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E674B854C00000000 /* lib_idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min11.0.a; path = lib_idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E67F72F7400000000 /* lib_idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min11.0.a; path = lib_idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E68ACC6AC00000000 /* lib_idx_image_to_tensor_calculator_77E4634D_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_to_tensor_calculator_77E4634D_ios_min15.5.a; path = lib_idx_image_to_tensor_calculator_77E4634D_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E69D807EA00000000 /* to_image_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = to_image_calculator.cc; path = mediapipe/calculators/util/to_image_calculator.cc; sourceTree = ""; }; + 8F62469E6AB872C600000000 /* lib_idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min15.5.a; path = lib_idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E6CEE53C200000000 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min11.0.a; path = lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E6D2A8B0300000000 /* rect_transformation_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = rect_transformation_calculator.cc; path = mediapipe/calculators/util/rect_transformation_calculator.cc; sourceTree = ""; }; + 8F62469E6E23461400000000 /* resource_util_custom.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = resource_util_custom.h; path = mediapipe/util/resource_util_custom.h; sourceTree = ""; }; + 8F62469E6E52672200000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/render/module/common/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + 8F62469E6F05DF7E00000000 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min15.5.a; path = lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E6F3A937000000000 /* vec2.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = vec2.hpp; path = mediapipe/render/core/math/vec2.hpp; sourceTree = ""; }; + 8F62469E7079047800000000 /* flow_limiter_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = flow_limiter_calculator.cc; path = mediapipe/calculators/core/flow_limiter_calculator.cc; sourceTree = ""; }; + 8F62469E7371AF6400000000 /* lib_idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min11.0.a; path = lib_idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E741FC72000000000 /* lib_idx_image_to_tensor_converter_metal_A1DB3550_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_to_tensor_converter_metal_A1DB3550_ios_min11.0.a; path = lib_idx_image_to_tensor_converter_metal_A1DB3550_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E754BEB6400000000 /* gl_context.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_context.h; path = mediapipe/gpu/gl_context.h; sourceTree = ""; }; + 8F62469E758378C800000000 /* resource_util_internal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = resource_util_internal.h; path = mediapipe/util/resource_util_internal.h; sourceTree = ""; }; + 8F62469E75DC94FA00000000 /* lib_idx_gl_calculator_helper_6AE62265_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_gl_calculator_helper_6AE62265_ios_min11.0.a; path = lib_idx_gl_calculator_helper_6AE62265_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E7882FF9000000000 /* GPUImageTarget.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = GPUImageTarget.h; path = mediapipe/render/core/GPUImageTarget.h; sourceTree = ""; }; + 8F62469E7A9963A400000000 /* vec4.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vec4.cpp; path = mediapipe/render/core/math/vec4.cpp; sourceTree = ""; }; + 8F62469E7B0088E300000000 /* begin_loop_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = begin_loop_calculator.cc; path = mediapipe/calculators/core/begin_loop_calculator.cc; sourceTree = ""; }; + 8F62469E7C7EAFF400000000 /* lib_idx_olamodule_common_library_9ADAC3A9_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_olamodule_common_library_9ADAC3A9_ios_min15.5.a; path = lib_idx_olamodule_common_library_9ADAC3A9_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E7CF00B4E00000000 /* landmarks_to_transform_matrix.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = landmarks_to_transform_matrix.h; path = mediapipe/util/tflite/operations/landmarks_to_transform_matrix.h; sourceTree = ""; }; + 8F62469E7D01462600000000 /* libmediapipe-render-module-beauty-ios-OlaFaceUnityLibrary.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = "libmediapipe-render-module-beauty-ios-OlaFaceUnityLibrary.a"; path = "libmediapipe-render-module-beauty-ios-OlaFaceUnityLibrary.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E7D7F06EB00000000 /* image_properties_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = image_properties_calculator.cc; path = mediapipe/calculators/image/image_properties_calculator.cc; sourceTree = ""; }; + 8F62469E7E422EC300000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/render/module/beauty/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + 8F62469E7EE2407B00000000 /* landmarks_to_render_data_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = landmarks_to_render_data_calculator.h; path = mediapipe/calculators/util/landmarks_to_render_data_calculator.h; sourceTree = ""; }; + 8F62469E7F557F5700000000 /* IOSTarget.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = IOSTarget.hpp; path = mediapipe/render/core/IOSTarget.hpp; sourceTree = ""; }; + 8F62469E7FAD39F900000000 /* vec3.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vec3.cpp; path = mediapipe/render/core/math/vec3.cpp; sourceTree = ""; }; + 8F62469E808D9C3C00000000 /* lib_idx_cpu_util_D57AACFF_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_cpu_util_D57AACFF_ios_min15.5.a; path = lib_idx_cpu_util_D57AACFF_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E82C6800100000000 /* GPUImage-x.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "GPUImage-x.h"; path = "mediapipe/render/core/GPUImage-x.h"; sourceTree = ""; }; + 8F62469E831E6AA800000000 /* gpu_buffer_storage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gpu_buffer_storage.h; path = mediapipe/gpu/gpu_buffer_storage.h; sourceTree = ""; }; + 8F62469E8369D9F900000000 /* tflite_model_loader.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tflite_model_loader.cc; path = mediapipe/util/tflite/tflite_model_loader.cc; sourceTree = ""; }; + 8F62469E841EB37B00000000 /* collection_has_min_size_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = collection_has_min_size_calculator.cc; path = mediapipe/calculators/util/collection_has_min_size_calculator.cc; sourceTree = ""; }; + 8F62469E849B03E000000000 /* MPPMetalHelper.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = MPPMetalHelper.mm; path = mediapipe/gpu/MPPMetalHelper.mm; sourceTree = ""; }; + 8F62469E8563DF9500000000 /* face_mesh_beauty_render.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = face_mesh_beauty_render.cc; path = mediapipe/render/module/beauty/face_mesh_beauty_render.cc; sourceTree = ""; }; + 8F62469E85ED468800000000 /* lib_idx_cpu_op_resolver_E63A3714_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_cpu_op_resolver_E63A3714_ios_min15.5.a; path = lib_idx_cpu_op_resolver_E63A3714_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E8618537700000000 /* gpu_shared_data_internal.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gpu_shared_data_internal.cc; path = mediapipe/gpu/gpu_shared_data_internal.cc; sourceTree = ""; }; + 8F62469E888D533E00000000 /* lib_idx_max_unpooling_max_pool_argmax_09627F19_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_max_unpooling_max_pool_argmax_09627F19_ios_min11.0.a; path = lib_idx_max_unpooling_max_pool_argmax_09627F19_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E8968C08000000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/render/core/math/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + 8F62469E89917A6900000000 /* op_resolver.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = op_resolver.h; path = mediapipe/util/tflite/op_resolver.h; sourceTree = ""; }; + 8F62469E89BFDCEA00000000 /* lib_idx_core_core-ios_731E135C_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = "lib_idx_core_core-ios_731E135C_ios_min11.0.a"; path = "lib_idx_core_core-ios_731E135C_ios_min11.0.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E8A36159200000000 /* gl_thread_collector.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_thread_collector.h; path = mediapipe/gpu/gl_thread_collector.h; sourceTree = ""; }; + 8F62469E8B3041AE00000000 /* lib_idx_resource_util_0C14DDDC_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_resource_util_0C14DDDC_ios_min11.0.a; path = lib_idx_resource_util_0C14DDDC_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E8BDFD12800000000 /* lib_idx_tensors_to_detections_calculator_B4C99DEA_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tensors_to_detections_calculator_B4C99DEA_ios_min15.5.a; path = lib_idx_tensors_to_detections_calculator_B4C99DEA_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E8DC1865400000000 /* gl_context_internal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_context_internal.h; path = mediapipe/gpu/gl_context_internal.h; sourceTree = ""; }; + 8F62469E8E4BB78C00000000 /* lib_idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min15.5.a; path = lib_idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E8EDC082600000000 /* gpu_buffer.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gpu_buffer.cc; path = mediapipe/gpu/gpu_buffer.cc; sourceTree = ""; }; + 8F62469E8EEB36F900000000 /* resource_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = resource_util.h; path = mediapipe/util/resource_util.h; sourceTree = ""; }; + 8F62469E8F068F4700000000 /* local_file_contents_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = local_file_contents_calculator.cc; path = mediapipe/calculators/util/local_file_contents_calculator.cc; sourceTree = ""; }; + 8F62469E8F2DAC9800000000 /* lib_idx_MPPMetalUtil_622319D3_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_MPPMetalUtil_622319D3_ios_min11.0.a; path = lib_idx_MPPMetalUtil_622319D3_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E8FB74E7600000000 /* inference_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = inference_calculator.cc; path = mediapipe/calculators/tensor/inference_calculator.cc; sourceTree = ""; }; + 8F62469E9075CB4E00000000 /* lib_idx_resource_util_0C14DDDC_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_resource_util_0C14DDDC_ios_min15.5.a; path = lib_idx_resource_util_0C14DDDC_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E909C31C200000000 /* lib_idx_tflite_model_loader_6F62D289_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tflite_model_loader_6F62D289_ios_min15.5.a; path = lib_idx_tflite_model_loader_6F62D289_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E915B5F1F00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/modules/face_landmark/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + 8F62469E9298B3CD00000000 /* landmarks_to_transform_matrix.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = landmarks_to_transform_matrix.cc; path = mediapipe/util/tflite/operations/landmarks_to_transform_matrix.cc; sourceTree = ""; }; + 8F62469E92E2BF3700000000 /* gpu_buffer_format.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gpu_buffer_format.cc; path = mediapipe/gpu/gpu_buffer_format.cc; sourceTree = ""; }; + 8F62469E9360D7F700000000 /* MPPGraph.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MPPGraph.h; path = mediapipe/objc/MPPGraph.h; sourceTree = ""; }; + 8F62469E93A51CF900000000 /* vec4.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = vec4.hpp; path = mediapipe/render/core/math/vec4.hpp; sourceTree = ""; }; + 8F62469E965A610100000000 /* gl_calculator_helper.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_calculator_helper.h; path = mediapipe/gpu/gl_calculator_helper.h; sourceTree = ""; }; + 8F62469E9713725000000000 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min11.0.a; path = lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E98313BAC00000000 /* lib_idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min15.5.a; path = lib_idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E984EF97C00000000 /* gpu_service.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gpu_service.cc; path = mediapipe/gpu/gpu_service.cc; sourceTree = ""; }; + 8F62469E992468E800000000 /* face_mesh_beauty_render.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = face_mesh_beauty_render.h; path = mediapipe/render/module/beauty/face_mesh_beauty_render.h; sourceTree = ""; }; + 8F62469E998F8A2E00000000 /* NSError+util_status.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "NSError+util_status.mm"; path = "mediapipe/objc/NSError+util_status.mm"; sourceTree = ""; }; + 8F62469E99A19E9200000000 /* resource_util_apple.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = resource_util_apple.cc; path = mediapipe/util/resource_util_apple.cc; sourceTree = ""; }; + 8F62469E9A0C486600000000 /* Filter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Filter.cpp; path = mediapipe/render/core/Filter.cpp; sourceTree = ""; }; + 8F62469E9A67603600000000 /* lib_idx_image_properties_calculator_gpu_service_941BB6CA_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_properties_calculator_gpu_service_941BB6CA_ios_min15.5.a; path = lib_idx_image_properties_calculator_gpu_service_941BB6CA_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E9C12AC1000000000 /* lib_idx_annotation_renderer_1DCBFDF7_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_annotation_renderer_1DCBFDF7_ios_min15.5.a; path = lib_idx_annotation_renderer_1DCBFDF7_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E9E41D6ED00000000 /* annotation_overlay_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = annotation_overlay_calculator.cc; path = mediapipe/calculators/util/annotation_overlay_calculator.cc; sourceTree = ""; }; + 8F62469E9F01B81400000000 /* lib_idx_op_resolver_29CCF89E_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_op_resolver_29CCF89E_ios_min11.0.a; path = lib_idx_op_resolver_29CCF89E_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469E9FCBB85800000000 /* lib_idx_FaceMeshGPULibrary_61E6B091_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_FaceMeshGPULibrary_61E6B091_ios_min11.0.a; path = lib_idx_FaceMeshGPULibrary_61E6B091_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469EA0A3B78B00000000 /* landmark_projection_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = landmark_projection_calculator.cc; path = mediapipe/calculators/util/landmark_projection_calculator.cc; sourceTree = ""; }; + 8F62469EA1639D0C00000000 /* detections_to_rects_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = detections_to_rects_calculator.cc; path = mediapipe/calculators/util/detections_to_rects_calculator.cc; sourceTree = ""; }; + 8F62469EA1C5D7DE00000000 /* Source.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = Source.hpp; path = mediapipe/render/core/Source.hpp; sourceTree = ""; }; + 8F62469EA1FC1CB100000000 /* transform_tensor_bilinear.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = transform_tensor_bilinear.h; path = mediapipe/util/tflite/operations/transform_tensor_bilinear.h; sourceTree = ""; }; + 8F62469EA3E97E1400000000 /* gl_texture_buffer.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gl_texture_buffer.cc; path = mediapipe/gpu/gl_texture_buffer.cc; sourceTree = ""; }; + 8F62469EA4CF090C00000000 /* lib_idx_util_66001351_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_util_66001351_ios_min15.5.a; path = lib_idx_util_66001351_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469EA59EA68600000000 /* face_mesh_module_imp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = face_mesh_module_imp.cc; path = mediapipe/render/module/beauty/face_mesh_module_imp.cc; sourceTree = ""; }; + 8F62469EA688677600000000 /* SourceCamera.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SourceCamera.cpp; path = mediapipe/render/core/SourceCamera.cpp; sourceTree = ""; }; + 8F62469EA699A49F00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/graphs/face_mesh/subgraphs/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + 8F62469EA6A3680800000000 /* lib_idx_image_to_tensor_converter_opencv_1FC75D94_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_to_tensor_converter_opencv_1FC75D94_ios_min15.5.a; path = lib_idx_image_to_tensor_converter_opencv_1FC75D94_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469EA6CEF2BC00000000 /* lib_idx_clip_vector_size_calculator_B472A55B_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_clip_vector_size_calculator_B472A55B_ios_min11.0.a; path = lib_idx_clip_vector_size_calculator_B472A55B_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469EA7FB485A00000000 /* image_to_tensor_converter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = image_to_tensor_converter.h; path = mediapipe/calculators/tensor/image_to_tensor_converter.h; sourceTree = ""; }; + 8F62469EA94AD89E00000000 /* lib_idx_transpose_conv_bias_94247583_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_transpose_conv_bias_94247583_ios_min15.5.a; path = lib_idx_transpose_conv_bias_94247583_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469EAAEBDCD100000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/calculators/tflite/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + 8F62469EABDC185C00000000 /* gpu_shared_data_internal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gpu_shared_data_internal.h; path = mediapipe/gpu/gpu_shared_data_internal.h; sourceTree = ""; }; + 8F62469EADA7E74800000000 /* lib_idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min11.0.a; path = lib_idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469EAE2EAF7600000000 /* lib_idx_gl_calculator_helper_6AE62265_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_gl_calculator_helper_6AE62265_ios_min15.5.a; path = lib_idx_gl_calculator_helper_6AE62265_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469EAF11437800000000 /* lib_idx_split_vector_calculator_73890910_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_split_vector_calculator_73890910_ios_min15.5.a; path = lib_idx_split_vector_calculator_73890910_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469EAF368E8800000000 /* face_landmarks_to_render_data_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = face_landmarks_to_render_data_calculator.cc; path = mediapipe/graphs/face_mesh/calculators/face_landmarks_to_render_data_calculator.cc; sourceTree = ""; }; + 8F62469EAFD40B0000000000 /* shader_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = shader_util.h; path = mediapipe/gpu/shader_util.h; sourceTree = ""; }; + 8F62469EB1085FB600000000 /* lib_idx_MPPGraphGPUData_DE328030_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_MPPGraphGPUData_DE328030_ios_min15.5.a; path = lib_idx_MPPGraphGPUData_DE328030_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469EB114B9D600000000 /* OlaFaceUnity.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = OlaFaceUnity.h; path = mediapipe/render/module/beauty/ios/OlaFaceUnity.h; sourceTree = ""; }; + 8F62469EB16A0B0500000000 /* math_utils.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = math_utils.hpp; path = mediapipe/render/core/math/math_utils.hpp; sourceTree = ""; }; + 8F62469EB1AC117700000000 /* gate_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gate_calculator.cc; path = mediapipe/calculators/core/gate_calculator.cc; sourceTree = ""; }; + 8F62469EB1E9A57D00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/render/core/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + 8F62469EB1FDA98700000000 /* math_utils.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = math_utils.cpp; path = mediapipe/render/core/math/math_utils.cpp; sourceTree = ""; }; + 8F62469EB21A509200000000 /* rectangle_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = rectangle_util.h; path = mediapipe/util/rectangle_util.h; sourceTree = ""; }; + 8F62469EB288401C00000000 /* ola_graph.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ola_graph.cc; path = mediapipe/render/module/common/ola_graph.cc; sourceTree = ""; }; + 8F62469EB31F330C00000000 /* lib_idx_shader_util_209E4ED9_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_shader_util_209E4ED9_ios_min11.0.a; path = lib_idx_shader_util_209E4ED9_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469EB3AF12A500000000 /* util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = util.h; path = mediapipe/objc/util.h; sourceTree = ""; }; + 8F62469EB3DBCBD400000000 /* lib_idx_non_max_suppression_calculator_E0C32C58_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_non_max_suppression_calculator_E0C32C58_ios_min15.5.a; path = lib_idx_non_max_suppression_calculator_E0C32C58_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469EB4D149AA00000000 /* MPPMetalHelper.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MPPMetalHelper.h; path = mediapipe/gpu/MPPMetalHelper.h; sourceTree = ""; }; + 8F62469EB6285B2000000000 /* ola_graph.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ola_graph.h; path = mediapipe/render/module/common/ola_graph.h; sourceTree = ""; }; + 8F62469EB6FE491A00000000 /* TargetView.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = TargetView.hpp; path = mediapipe/render/core/TargetView.hpp; sourceTree = ""; }; + 8F62469EB86681C200000000 /* lib_idx_shader_util_209E4ED9_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_shader_util_209E4ED9_ios_min15.5.a; path = lib_idx_shader_util_209E4ED9_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469EB9DEA8D000000000 /* lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min15.5.a; path = lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469EBA4BE9D200000000 /* MPPGraphGPUData.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = MPPGraphGPUData.mm; path = mediapipe/gpu/MPPGraphGPUData.mm; sourceTree = ""; }; + 8F62469EBB40D9BF00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/util/tflite/operations/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + 8F62469EBBD68CCB00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/calculators/tensor/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + 8F62469EBC1DF28100000000 /* landmarks_to_render_data_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = landmarks_to_render_data_calculator.cc; path = mediapipe/calculators/util/landmarks_to_render_data_calculator.cc; sourceTree = ""; }; + 8F62469EBC7F293600000000 /* lib_idx_clip_vector_size_calculator_B472A55B_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_clip_vector_size_calculator_B472A55B_ios_min15.5.a; path = lib_idx_clip_vector_size_calculator_B472A55B_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469EBCE7858600000000 /* thresholding_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = thresholding_calculator.cc; path = mediapipe/calculators/util/thresholding_calculator.cc; sourceTree = ""; }; + 8F62469EBE46B07800000000 /* lib_idx_FaceMeshGPULibrary_61E6B091_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_FaceMeshGPULibrary_61E6B091_ios_min15.5.a; path = lib_idx_FaceMeshGPULibrary_61E6B091_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469EBED4CA2400000000 /* detections_to_render_data_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = detections_to_render_data_calculator.cc; path = mediapipe/calculators/util/detections_to_render_data_calculator.cc; sourceTree = ""; }; + 8F62469EBF95A75D00000000 /* image_frame_view.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = image_frame_view.h; path = mediapipe/gpu/image_frame_view.h; sourceTree = ""; }; + 8F62469EC05BE00400000000 /* gl_calculator_helper_impl_common.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gl_calculator_helper_impl_common.cc; path = mediapipe/gpu/gl_calculator_helper_impl_common.cc; sourceTree = ""; }; + 8F62469EC1EEAB6200000000 /* NSError+util_status.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "NSError+util_status.h"; path = "mediapipe/objc/NSError+util_status.h"; sourceTree = ""; }; + 8F62469EC345270B00000000 /* IOSTarget.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = IOSTarget.cpp; path = mediapipe/render/core/IOSTarget.cpp; sourceTree = ""; }; + 8F62469EC43404B200000000 /* tflite_custom_op_resolver_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tflite_custom_op_resolver_calculator.cc; path = mediapipe/calculators/tflite/tflite_custom_op_resolver_calculator.cc; sourceTree = ""; }; + 8F62469EC4A7F5F700000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/render/module/beauty/ios/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + 8F62469EC53CE65200000000 /* lib_idx_image_properties_calculator_gpu_service_941BB6CA_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_properties_calculator_gpu_service_941BB6CA_ios_min11.0.a; path = lib_idx_image_properties_calculator_gpu_service_941BB6CA_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469EC5A8384400000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/calculators/internal/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + 8F62469EC6F9540300000000 /* gpu_service.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gpu_service.h; path = mediapipe/gpu/gpu_service.h; sourceTree = ""; }; + 8F62469EC7392BFD00000000 /* TargetView.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = TargetView.cpp; path = mediapipe/render/core/TargetView.cpp; sourceTree = ""; }; + 8F62469EC7C4069700000000 /* vec3.inl */ = {isa = PBXFileReference; lastKnownFileType = "public.c-plus-plus-inline-header"; name = vec3.inl; path = mediapipe/render/core/math/vec3.inl; sourceTree = ""; }; + 8F62469EC9964E7600000000 /* lib_idx_gl_simple_shaders_2CB9CEAD_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_gl_simple_shaders_2CB9CEAD_ios_min15.5.a; path = lib_idx_gl_simple_shaders_2CB9CEAD_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469ECB6D125D00000000 /* mat4.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = mat4.hpp; path = mediapipe/render/core/math/mat4.hpp; sourceTree = ""; }; + 8F62469ECB93143800000000 /* lib_idx_transpose_conv_bias_94247583_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_transpose_conv_bias_94247583_ios_min11.0.a; path = lib_idx_transpose_conv_bias_94247583_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469ECCE7F65F00000000 /* landmarks_refinement_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = landmarks_refinement_calculator.cc; path = mediapipe/calculators/util/landmarks_refinement_calculator.cc; sourceTree = ""; }; + 8F62469ECD95EE7200000000 /* previous_loopback_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = previous_loopback_calculator.cc; path = mediapipe/calculators/core/previous_loopback_calculator.cc; sourceTree = ""; }; + 8F62469ECDEAEE5C00000000 /* max_pool_argmax.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = max_pool_argmax.cc; path = mediapipe/util/tflite/operations/max_pool_argmax.cc; sourceTree = ""; }; + 8F62469ECE781BC400000000 /* lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min15.5.a; path = lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469ECE8AEA1800000000 /* lib_idx_detection_projection_calculator_07107D71_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_detection_projection_calculator_07107D71_ios_min11.0.a; path = lib_idx_detection_projection_calculator_07107D71_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469ED0D5BCFD00000000 /* end_loop_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = end_loop_calculator.cc; path = mediapipe/calculators/core/end_loop_calculator.cc; sourceTree = ""; }; + 8F62469ED11949C300000000 /* gl_context.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gl_context.cc; path = mediapipe/gpu/gl_context.cc; sourceTree = ""; }; + 8F62469ED1F0DC8C00000000 /* lib_idx_MPPGraphGPUData_DE328030_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_MPPGraphGPUData_DE328030_ios_min11.0.a; path = lib_idx_MPPGraphGPUData_DE328030_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469ED21F400300000000 /* begin_loop_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = begin_loop_calculator.h; path = mediapipe/calculators/core/begin_loop_calculator.h; sourceTree = ""; }; + 8F62469ED2C19F4E00000000 /* lib_idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min15.5.a; path = lib_idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469ED30BA54B00000000 /* CFHolder.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CFHolder.h; path = mediapipe/objc/CFHolder.h; sourceTree = ""; }; + 8F62469ED4FD547400000000 /* lib_idx_begin_loop_calculator_55C0335F_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_begin_loop_calculator_55C0335F_ios_min11.0.a; path = lib_idx_begin_loop_calculator_55C0335F_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469ED71B607200000000 /* split_proto_list_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = split_proto_list_calculator.cc; path = mediapipe/calculators/core/split_proto_list_calculator.cc; sourceTree = ""; }; + 8F62469ED78C49CA00000000 /* lib_idx_pixel_buffer_pool_util_C139F8B5_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_pixel_buffer_pool_util_C139F8B5_ios_min15.5.a; path = lib_idx_pixel_buffer_pool_util_C139F8B5_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469ED84977E600000000 /* tensors_to_landmarks_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tensors_to_landmarks_calculator.cc; path = mediapipe/calculators/tensor/tensors_to_landmarks_calculator.cc; sourceTree = ""; }; + 8F62469ED8BCE6D000000000 /* tensors_to_floats_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tensors_to_floats_calculator.cc; path = mediapipe/calculators/tensor/tensors_to_floats_calculator.cc; sourceTree = ""; }; + 8F62469ED92E9DBA00000000 /* lib_idx_inference_calculator_metal_65084AC7_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_inference_calculator_metal_65084AC7_ios_min11.0.a; path = lib_idx_inference_calculator_metal_65084AC7_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469ED999FFBC00000000 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; name = Info.plist; path = mediapipe/render/module/beauty/ios/Info.plist; sourceTree = ""; }; + 8F62469ED9FC1F1200000000 /* GLProgram.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = GLProgram.cpp; path = mediapipe/render/core/GLProgram.cpp; sourceTree = ""; }; + 8F62469EDAE0FA6B00000000 /* pixel_buffer_pool_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = pixel_buffer_pool_util.h; path = mediapipe/gpu/pixel_buffer_pool_util.h; sourceTree = ""; }; + 8F62469EDBE5CD1B00000000 /* Ref.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Ref.cpp; path = mediapipe/render/core/Ref.cpp; sourceTree = ""; }; + 8F62469EDC30573A00000000 /* vec3.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = vec3.hpp; path = mediapipe/render/core/math/vec3.hpp; sourceTree = ""; }; + 8F62469EDCE124F400000000 /* lib_idx_OlaFaceUnityLibrary_63B2D14F_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_OlaFaceUnityLibrary_63B2D14F_ios_min11.0.a; path = lib_idx_OlaFaceUnityLibrary_63B2D14F_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469EDD869D9E00000000 /* gl_calculator_helper.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gl_calculator_helper.cc; path = mediapipe/gpu/gl_calculator_helper.cc; sourceTree = ""; }; + 8F62469EDED8FF2900000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/graphs/face_mesh/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + 8F62469EDF10012C00000000 /* lib_idx_core_core-ios_731E135C_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = "lib_idx_core_core-ios_731E135C_ios_min15.5.a"; path = "lib_idx_core_core-ios_731E135C_ios_min15.5.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469EDF9B2B7600000000 /* lib_idx_annotation_overlay_calculator_7772C341_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_annotation_overlay_calculator_7772C341_ios_min11.0.a; path = lib_idx_annotation_overlay_calculator_7772C341_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469EE10D2C8600000000 /* lib_idx_util_66001351_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_util_66001351_ios_min11.0.a; path = lib_idx_util_66001351_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469EE11EEBC500000000 /* Framebuffer.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = Framebuffer.hpp; path = mediapipe/render/core/Framebuffer.hpp; sourceTree = ""; }; + 8F62469EE270DE8600000000 /* annotation_renderer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = annotation_renderer.h; path = mediapipe/util/annotation_renderer.h; sourceTree = ""; }; + 8F62469EE2AAAAC700000000 /* attachments.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = attachments.h; path = mediapipe/gpu/attachments.h; sourceTree = ""; }; + 8F62469EE46A0E9300000000 /* association_norm_rect_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = association_norm_rect_calculator.cc; path = mediapipe/calculators/util/association_norm_rect_calculator.cc; sourceTree = ""; }; + 8F62469EE51F86FE00000000 /* graph_support.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = graph_support.h; path = mediapipe/gpu/graph_support.h; sourceTree = ""; }; + 8F62469EE545996200000000 /* gpu_buffer_format.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gpu_buffer_format.h; path = mediapipe/gpu/gpu_buffer_format.h; sourceTree = ""; }; + 8F62469EE68DB5B900000000 /* Filter.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = Filter.hpp; path = mediapipe/render/core/Filter.hpp; sourceTree = ""; }; + 8F62469EE75E0B9900000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = third_party/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + 8F62469EE7ED8E2C00000000 /* transpose_conv_bias.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = transpose_conv_bias.cc; path = mediapipe/util/tflite/operations/transpose_conv_bias.cc; sourceTree = ""; }; + 8F62469EE980F42800000000 /* face_mesh_module_imp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = face_mesh_module_imp.h; path = mediapipe/render/module/beauty/face_mesh_module_imp.h; sourceTree = ""; }; + 8F62469EEA623A4800000000 /* gl_texture_view.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gl_texture_view.cc; path = mediapipe/gpu/gl_texture_view.cc; sourceTree = ""; }; + 8F62469EEB12474400000000 /* lib_idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min11.0.a; path = lib_idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469EEB9B4B7E00000000 /* lib_idx_cpu_util_D57AACFF_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_cpu_util_D57AACFF_ios_min11.0.a; path = lib_idx_cpu_util_D57AACFF_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469EEC679CE200000000 /* resource_cache.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = resource_cache.h; path = mediapipe/util/resource_cache.h; sourceTree = ""; }; + 8F62469EEDBFEFFF00000000 /* Target.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = Target.hpp; path = mediapipe/render/core/Target.hpp; sourceTree = ""; }; + 8F62469EEEE7D66700000000 /* MPPGraph.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = MPPGraph.mm; path = mediapipe/objc/MPPGraph.mm; sourceTree = ""; }; + 8F62469EEFDC836800000000 /* lib_idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min11.0.a; path = lib_idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469EF18A35B600000000 /* max_unpooling.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = max_unpooling.cc; path = mediapipe/util/tflite/operations/max_unpooling.cc; sourceTree = ""; }; + 8F62469EF31678B900000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/util/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + 8F62469EF332D51F00000000 /* image_to_tensor_converter_opencv.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = image_to_tensor_converter_opencv.cc; path = mediapipe/calculators/tensor/image_to_tensor_converter_opencv.cc; sourceTree = ""; }; + 8F62469EF3D7B8CE00000000 /* lib_idx_split_vector_calculator_73890910_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_split_vector_calculator_73890910_ios_min11.0.a; path = lib_idx_split_vector_calculator_73890910_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469EF4C8279B00000000 /* OlaFaceUnity.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = OlaFaceUnity.mm; path = mediapipe/render/module/beauty/ios/OlaFaceUnity.mm; sourceTree = ""; }; + 8F62469EF4DBABD700000000 /* gpu_buffer_storage_cv_pixel_buffer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gpu_buffer_storage_cv_pixel_buffer.h; path = mediapipe/gpu/gpu_buffer_storage_cv_pixel_buffer.h; sourceTree = ""; }; + 8F62469EF51362E900000000 /* gl_texture_buffer_pool.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gl_texture_buffer_pool.cc; path = mediapipe/gpu/gl_texture_buffer_pool.cc; sourceTree = ""; }; + 8F62469EF66CD23100000000 /* Info.plist */ = {isa = PBXFileReference; explicitFileType = text.plist; name = Info.plist; path = "OlaFaceUnity.xcodeproj/.tulsi/tulsi-execution-root/bazel-tulsi-includes/x/x/mediapipe/render/module/beauty/ios/OlaFaceUnityFramework-intermediates/Info.plist"; sourceTree = SOURCE_ROOT; }; + 8F62469EF673763B00000000 /* FilterGroup.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = FilterGroup.hpp; path = mediapipe/render/core/FilterGroup.hpp; sourceTree = ""; }; + 8F62469EFB24DFE200000000 /* association_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = association_calculator.h; path = mediapipe/calculators/util/association_calculator.h; sourceTree = ""; }; + 8F62469EFCCC889200000000 /* GPUImageMacros.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = GPUImageMacros.h; path = mediapipe/render/core/GPUImageMacros.h; sourceTree = ""; }; + 8F62469EFD02751100000000 /* op_resolver.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = op_resolver.cc; path = mediapipe/util/tflite/op_resolver.cc; sourceTree = ""; }; + 8F62469EFEC0AA7A00000000 /* lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min11.0.a; path = lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F62469EFF18EE3C00000000 /* MPPMetalUtil.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = MPPMetalUtil.mm; path = mediapipe/gpu/MPPMetalUtil.mm; sourceTree = ""; }; + 8F62469EFF81542500000000 /* MPPTimestampConverter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MPPTimestampConverter.h; path = mediapipe/objc/MPPTimestampConverter.h; sourceTree = ""; }; + 8F62469EFFA887E800000000 /* lib_idx_inference_calculator_metal_65084AC7_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_inference_calculator_metal_65084AC7_ios_min15.5.a; path = lib_idx_inference_calculator_metal_65084AC7_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; /* End PBXFileReference section */ /* Begin PBXGroup section */ - 1A7E690D03BF169D00000000 /* operations */ = { + B6073D5100A0230400000000 /* x */ = { isa = PBXGroup; children = ( - AED7A97FBCC8613800000000 /* BUILD */, - AED7A97F8537330500000000 /* landmarks_to_transform_matrix.cc */, - AED7A97FDEC9C83500000000 /* landmarks_to_transform_matrix.h */, - AED7A97F466D956B00000000 /* max_pool_argmax.cc */, - AED7A97F871BF89200000000 /* max_pool_argmax.h */, - AED7A97F5DA9AAF300000000 /* max_unpooling.cc */, - AED7A97FFDD4D82600000000 /* max_unpooling.h */, - AED7A97FA42FD6CE00000000 /* transform_landmarks.cc */, - AED7A97F3360798700000000 /* transform_landmarks.h */, - AED7A97F8FE6AC8600000000 /* transform_tensor_bilinear.cc */, - AED7A97FF89FECF800000000 /* transform_tensor_bilinear.h */, - AED7A97FC2113DD500000000 /* transpose_conv_bias.cc */, - AED7A97F51B51D6D00000000 /* transpose_conv_bias.h */, + B6073D5100A0230400000001 /* x */, ); - name = operations; + name = x; sourceTree = ""; }; - 1A7E690D177BD5C500000000 /* calculators */ = { + B6073D5100A0230400000001 /* x */ = { isa = PBXGroup; children = ( - 1A7E690DDE22F5B400000000 /* core */, - 1A7E690D9077480200000000 /* image */, - 1A7E690D5DB656D100000000 /* internal */, - 1A7E690D72BBC75000000000 /* tensor */, - 1A7E690DC9FE8CC800000000 /* tflite */, - 1A7E690D3EA441D600000000 /* util */, + B6073D51D9D43D6F00000000 /* mediapipe */, + ); + name = x; + sourceTree = ""; + }; + B6073D510BCCD63300000000 /* calculators */ = { + isa = PBXGroup; + children = ( + B6073D5117D4EEA300000000 /* core */, + B6073D5161E865A700000000 /* image */, + B6073D517D56836F00000000 /* internal */, + B6073D51A67C5B3100000000 /* tensor */, + B6073D5144FF67A600000000 /* tflite */, + B6073D51F77EA18700000000 /* util */, ); name = calculators; sourceTree = ""; }; - 1A7E690D177BD5C500000001 /* calculators */ = { + B6073D510BCCD63300000001 /* calculators */ = { isa = PBXGroup; children = ( - AED7A97F39B50CDA00000000 /* BUILD */, - AED7A97FB77E32DB00000000 /* face_landmarks_to_render_data_calculator.cc */, + 8F62469E47AA7F8A00000000 /* BUILD */, + 8F62469EAF368E8800000000 /* face_landmarks_to_render_data_calculator.cc */, ); name = calculators; sourceTree = ""; }; - 1A7E690D20CD24FA00000000 /* subgraphs */ = { + B6073D5117D4EEA300000000 /* core */ = { isa = PBXGroup; children = ( - AED7A97F25A42A6600000000 /* BUILD */, + 8F62469E2A101FF000000000 /* BUILD */, + 8F62469E7B0088E300000000 /* begin_loop_calculator.cc */, + 8F62469ED21F400300000000 /* begin_loop_calculator.h */, + 8F62469E53BB6A1B00000000 /* clip_vector_size_calculator.cc */, + 8F62469E261F021200000000 /* clip_vector_size_calculator.h */, + 8F62469E267D173700000000 /* constant_side_packet_calculator.cc */, + 8F62469ED0D5BCFD00000000 /* end_loop_calculator.cc */, + 8F62469E20BF236600000000 /* end_loop_calculator.h */, + 8F62469E7079047800000000 /* flow_limiter_calculator.cc */, + 8F62469EB1AC117700000000 /* gate_calculator.cc */, + 8F62469ECD95EE7200000000 /* previous_loopback_calculator.cc */, + 8F62469ED71B607200000000 /* split_proto_list_calculator.cc */, + 8F62469E18FF939300000000 /* split_vector_calculator.cc */, + 8F62469E3355B24600000000 /* split_vector_calculator.h */, ); - name = subgraphs; + name = core; sourceTree = ""; }; - 1A7E690D34F194B400000000 /* face_detection */ = { + B6073D5117D4EEA300000001 /* core */ = { isa = PBXGroup; children = ( - AED7A97F528D2C4F00000000 /* BUILD */, - AED7A97F18343BA800000000 /* face_detection_short_range.tflite */, + 8F62469EB1E9A57D00000000 /* BUILD */, + 8F62469E50B7221100000000 /* CVFramebuffer.hpp */, + 8F62469E6328969D00000000 /* Context.cpp */, + 8F62469E4EEECC8300000000 /* Context.hpp */, + 8F62469E9A0C486600000000 /* Filter.cpp */, + 8F62469EE68DB5B900000000 /* Filter.hpp */, + 8F62469E36A1BCF500000000 /* FilterGroup.cpp */, + 8F62469EF673763B00000000 /* FilterGroup.hpp */, + 8F62469E5771EFBD00000000 /* Framebuffer.cpp */, + 8F62469EE11EEBC500000000 /* Framebuffer.hpp */, + 8F62469E42538A8300000000 /* FramebufferCache.cpp */, + 8F62469E2F07C29D00000000 /* FramebufferCache.hpp */, + 8F62469ED9FC1F1200000000 /* GLProgram.cpp */, + 8F62469E5426685200000000 /* GLProgram.hpp */, + 8F62469E82C6800100000000 /* GPUImage-x.h */, + 8F62469EFCCC889200000000 /* GPUImageMacros.h */, + 8F62469E7882FF9000000000 /* GPUImageTarget.h */, + 8F62469E3950B88400000000 /* GPUImageUtil.cpp */, + 8F62469E4907602900000000 /* GPUImageUtil.h */, + 8F62469EC345270B00000000 /* IOSTarget.cpp */, + 8F62469E7F557F5700000000 /* IOSTarget.hpp */, + 8F62469EDBE5CD1B00000000 /* Ref.cpp */, + 8F62469E46E60CF500000000 /* Ref.hpp */, + 8F62469E403A0ACA00000000 /* Source.cpp */, + 8F62469EA1C5D7DE00000000 /* Source.hpp */, + 8F62469EA688677600000000 /* SourceCamera.cpp */, + 8F62469E22A87E2800000000 /* SourceCamera.hpp */, + 8F62469E4CCA495100000000 /* SourceImage.cpp */, + 8F62469E0B995C7D00000000 /* SourceImage.hpp */, + 8F62469E2E87CC4E00000000 /* Target.cpp */, + 8F62469EEDBFEFFF00000000 /* Target.hpp */, + 8F62469EC7392BFD00000000 /* TargetView.cpp */, + 8F62469EB6FE491A00000000 /* TargetView.hpp */, + B6073D51547F41C200000000 /* math */, + 8F62469E64A7F94D00000000 /* math.cpp */, + 8F62469E1601B9F400000000 /* math.hpp */, ); - name = face_detection; + name = core; sourceTree = ""; }; - 1A7E690D3E3DDEFC00000000 /* gpu */ = { + B6073D511AD359C600000000 /* bazel-tulsi-includes */ = { isa = PBXGroup; children = ( - AED7A97F8F79BD4A00000000 /* BUILD */, - AED7A97F82E9D30000000000 /* MPPGraphGPUData.h */, - AED7A97F4AC087AD00000000 /* MPPGraphGPUData.mm */, - AED7A97FD4E094CE00000000 /* MPPMetalHelper.h */, - AED7A97F485AE53400000000 /* MPPMetalHelper.mm */, - AED7A97F79B4421A00000000 /* MPPMetalUtil.h */, - AED7A97F61BCBB4F00000000 /* MPPMetalUtil.mm */, - AED7A97F24C2D8FF00000000 /* attachments.h */, - AED7A97F8CDAAD8000000000 /* gl_base.h */, - AED7A97F4ECFA1D200000000 /* gl_calculator_helper.cc */, - AED7A97FFD4A17F100000000 /* gl_calculator_helper.h */, - AED7A97FBF4071C200000000 /* gl_calculator_helper_impl.h */, - AED7A97F4A333ECF00000000 /* gl_calculator_helper_impl_common.cc */, - AED7A97F7C7A404400000000 /* gl_context.cc */, - AED7A97F5BB68F3500000000 /* gl_context.h */, - AED7A97FC905FCC400000000 /* gl_context_eagl.cc */, - AED7A97F9CAAE49600000000 /* gl_context_internal.h */, - AED7A97F439B269800000000 /* gl_simple_shaders.cc */, - AED7A97F9CD3124800000000 /* gl_simple_shaders.h */, - AED7A97FF8C96D3D00000000 /* gl_texture_buffer.cc */, - AED7A97FEB99912A00000000 /* gl_texture_buffer.h */, - AED7A97FCEAD353700000000 /* gl_texture_buffer_pool.cc */, - AED7A97FA101DE9B00000000 /* gl_texture_buffer_pool.h */, - AED7A97F216C8D5C00000000 /* gl_texture_view.cc */, - AED7A97F1F021A8400000000 /* gl_texture_view.h */, - AED7A97F14D36E2200000000 /* gl_thread_collector.h */, - AED7A97F97ED1FC700000000 /* gpu_buffer.cc */, - AED7A97FD8CB6F0000000000 /* gpu_buffer.h */, - AED7A97F2E6B486000000000 /* gpu_buffer_format.cc */, - AED7A97F571FD55A00000000 /* gpu_buffer_format.h */, - AED7A97F043DD14B00000000 /* gpu_buffer_multi_pool.cc */, - AED7A97F53B35E3E00000000 /* gpu_buffer_multi_pool.h */, - AED7A97FAAA2FE7000000000 /* gpu_buffer_storage.cc */, - AED7A97F9DADC4EC00000000 /* gpu_buffer_storage.h */, - AED7A97FFCDA188900000000 /* gpu_buffer_storage_cv_pixel_buffer.cc */, - AED7A97FF82E717F00000000 /* gpu_buffer_storage_cv_pixel_buffer.h */, - AED7A97FAAB76E3900000000 /* gpu_buffer_storage_image_frame.h */, - AED7A97F92727CA000000000 /* gpu_service.cc */, - AED7A97FFD01374900000000 /* gpu_service.h */, - AED7A97FD3B4F92F00000000 /* gpu_shared_data_internal.cc */, - AED7A97FFA696A6900000000 /* gpu_shared_data_internal.h */, - AED7A97F60B164C900000000 /* graph_support.h */, - AED7A97F5E64FA8000000000 /* image_frame_view.h */, - AED7A97F54A0DE6100000000 /* pixel_buffer_pool_util.h */, - AED7A97F1C1E706800000000 /* pixel_buffer_pool_util.mm */, - AED7A97F73F96BB900000000 /* shader_util.cc */, - AED7A97FAD31F37100000000 /* shader_util.h */, - ); - name = gpu; - sourceTree = ""; - }; - 1A7E690D3EA441D600000000 /* util */ = { - isa = PBXGroup; - children = ( - AED7A97FBF1EA75800000000 /* BUILD */, - AED7A97F2284465B00000000 /* annotation_overlay_calculator.cc */, - AED7A97FAE9D2F9F00000000 /* association_calculator.h */, - AED7A97F553C1F9100000000 /* association_norm_rect_calculator.cc */, - AED7A97F62B6E69B00000000 /* collection_has_min_size_calculator.cc */, - AED7A97FBDE8EA7C00000000 /* collection_has_min_size_calculator.h */, - AED7A97FEBDBE6FA00000000 /* detection_projection_calculator.cc */, - AED7A97F884B993900000000 /* detections_to_rects_calculator.cc */, - AED7A97F17D3192E00000000 /* detections_to_rects_calculator.h */, - AED7A97FC6B713FC00000000 /* detections_to_render_data_calculator.cc */, - AED7A97F74F94ED900000000 /* landmark_projection_calculator.cc */, - AED7A97F72A6165000000000 /* landmarks_refinement_calculator.cc */, - AED7A97F90EB5F4C00000000 /* landmarks_refinement_calculator.h */, - AED7A97FB51C03B400000000 /* landmarks_to_detection_calculator.cc */, - AED7A97F730C61E800000000 /* landmarks_to_render_data_calculator.cc */, - AED7A97FF1F248B600000000 /* landmarks_to_render_data_calculator.h */, - AED7A97F4F3D133A00000000 /* local_file_contents_calculator.cc */, - AED7A97F8437B63D00000000 /* non_max_suppression_calculator.cc */, - AED7A97FD11E82F000000000 /* rect_to_render_data_calculator.cc */, - AED7A97F2684427300000000 /* rect_transformation_calculator.cc */, - AED7A97F941107A700000000 /* thresholding_calculator.cc */, - AED7A97FADAE637800000000 /* to_image_calculator.cc */, - ); - name = util; - sourceTree = ""; - }; - 1A7E690D3EA441D600000001 /* util */ = { - isa = PBXGroup; - children = ( - AED7A97F9BE1815200000000 /* BUILD */, - AED7A97F6708DA9D00000000 /* annotation_renderer.cc */, - AED7A97FD9D8267100000000 /* annotation_renderer.h */, - AED7A97FA54788E300000000 /* cpu_util.cc */, - AED7A97FFC48A85B00000000 /* cpu_util.h */, - AED7A97F67291D3100000000 /* header_util.cc */, - AED7A97F64463C9D00000000 /* header_util.h */, - AED7A97F1AF2345600000000 /* rectangle_util.cc */, - AED7A97F1B9417A400000000 /* rectangle_util.h */, - AED7A97F4D7323A000000000 /* resource_cache.h */, - AED7A97F57EF428E00000000 /* resource_util.cc */, - AED7A97FD11B226900000000 /* resource_util.h */, - AED7A97F994837E700000000 /* resource_util_apple.cc */, - AED7A97F15470C1200000000 /* resource_util_custom.h */, - AED7A97FE647888200000000 /* resource_util_internal.h */, - 1A7E690DC9FE8CC800000001 /* tflite */, - ); - name = util; - sourceTree = ""; - }; - 1A7E690D5270F98E00000000 /* Products */ = { - isa = PBXGroup; - children = ( - 1A7E690DA64DA2C200000000 /* Indexer */, - AED7A97F2CF5607E00000000 /* OlaFaceUnityFramework.framework */, - 1A7E690D9974D8B500000000 /* bazel-tulsi-includes */, - AED7A97FADE5D13000000000 /* libmediapipe-render-module-beauty-ios-OlaFaceUnityLibrary.a */, - ); - name = Products; - sourceTree = ""; - }; - 1A7E690D5DB656D100000000 /* internal */ = { - isa = PBXGroup; - children = ( - AED7A97FDD0DC0C900000000 /* BUILD */, - AED7A97F8597B84200000000 /* callback_packet_calculator.cc */, - ); - name = internal; - sourceTree = ""; - }; - 1A7E690D65368C9800000000 /* objc */ = { - isa = PBXGroup; - children = ( - AED7A97FD5C38D7700000000 /* BUILD */, - AED7A97F461F2F7700000000 /* CFHolder.h */, - AED7A97F296F7FCB00000000 /* MPPGraph.h */, - AED7A97FA1D1B51100000000 /* MPPGraph.mm */, - AED7A97F7157E27C00000000 /* MPPTimestampConverter.h */, - AED7A97F6E0AB7DE00000000 /* MPPTimestampConverter.mm */, - AED7A97FE86F350A00000000 /* NSError+util_status.h */, - AED7A97FA23EAE8F00000000 /* NSError+util_status.mm */, - AED7A97FCFCBE3A500000000 /* Weakify.h */, - AED7A97F512859F400000000 /* util.cc */, - AED7A97F96D677EC00000000 /* util.h */, - ); - name = objc; - sourceTree = ""; - }; - 1A7E690D71E1389600000000 /* face_landmark */ = { - isa = PBXGroup; - children = ( - AED7A97F18E10F1600000000 /* BUILD */, - AED7A97F80F3BA4D00000000 /* face_landmark_with_attention.tflite */, - ); - name = face_landmark; - sourceTree = ""; - }; - 1A7E690D72BBC75000000000 /* tensor */ = { - isa = PBXGroup; - children = ( - AED7A97F9AA963CC00000000 /* BUILD */, - AED7A97F3637376A00000000 /* image_to_tensor_calculator.cc */, - AED7A97F60D3B6A400000000 /* image_to_tensor_converter.h */, - AED7A97FFBEF99EE00000000 /* image_to_tensor_converter_metal.cc */, - AED7A97FDB65E5C000000000 /* image_to_tensor_converter_metal.h */, - AED7A97F3BCE8AD900000000 /* image_to_tensor_converter_opencv.cc */, - AED7A97F693AA84D00000000 /* image_to_tensor_converter_opencv.h */, - AED7A97FF31FC2AD00000000 /* image_to_tensor_utils.cc */, - AED7A97F9B7D710200000000 /* image_to_tensor_utils.h */, - AED7A97F48DF98DB00000000 /* inference_calculator.cc */, - AED7A97F6B79879800000000 /* inference_calculator.h */, - AED7A97F56D28C4300000000 /* inference_calculator_cpu.cc */, - AED7A97FD57A06BE00000000 /* inference_calculator_metal.cc */, - AED7A97F46E8118200000000 /* tensors_to_detections_calculator.cc */, - AED7A97F425236D800000000 /* tensors_to_floats_calculator.cc */, - AED7A97F2CE04EFD00000000 /* tensors_to_landmarks_calculator.cc */, - ); - name = tensor; - sourceTree = ""; - }; - 1A7E690D7839CC7000000000 /* render */ = { - isa = PBXGroup; - children = ( - 1A7E690DA2C9D79C00000000 /* module */, - ); - name = render; - sourceTree = ""; - }; - 1A7E690D7839CC7000000001 /* render */ = { - isa = PBXGroup; - children = ( - 1A7E690DDE22F5B400000001 /* core */, - 1A7E690DA2C9D79C00000001 /* module */, - ); - name = render; - sourceTree = ""; - }; - 1A7E690D7B0977E900000000 /* ios */ = { - isa = PBXGroup; - children = ( - 1A7E690DF1A27F9600000000 /* OlaFaceUnityFramework-intermediates */, - ); - name = ios; - sourceTree = ""; - }; - 1A7E690D7B0977E900000001 /* ios */ = { - isa = PBXGroup; - children = ( - AED7A97FA24D4E2600000000 /* BUILD */, - AED7A97FDDB0EF7500000000 /* Info.plist */, - AED7A97F1CB8D33100000000 /* OlaFaceUnity.h */, - AED7A97FE5A048F400000000 /* OlaFaceUnity.mm */, - ); - name = ios; - sourceTree = ""; - }; - 1A7E690D825F78B800000000 /* third_party */ = { - isa = PBXGroup; - children = ( - AED7A97F14A783CE00000000 /* BUILD */, - ); - name = third_party; - sourceTree = ""; - }; - 1A7E690D8C8C90B800000000 /* math */ = { - isa = PBXGroup; - children = ( - AED7A97FEB1D946B00000000 /* BUILD */, - AED7A97F969C674A00000000 /* mat4.cpp */, - AED7A97F612FDD7700000000 /* mat4.hpp */, - AED7A97F6B12573400000000 /* mat4.inl */, - AED7A97F567DD13A00000000 /* math_utils.cpp */, - AED7A97FC1724CB400000000 /* math_utils.hpp */, - AED7A97F0D075E6600000000 /* vec2.cpp */, - AED7A97F755AC2A200000000 /* vec2.hpp */, - AED7A97F7F7BF53600000000 /* vec2.inl */, - AED7A97FD02AC36400000000 /* vec3.cpp */, - AED7A97F8889ECD800000000 /* vec3.hpp */, - AED7A97F35479D9E00000000 /* vec3.inl */, - AED7A97F4E6E1B1A00000000 /* vec4.cpp */, - AED7A97FD4527DC400000000 /* vec4.hpp */, - AED7A97F2FF7641A00000000 /* vec4.inl */, - ); - name = math; - sourceTree = ""; - }; - 1A7E690D9077480200000000 /* image */ = { - isa = PBXGroup; - children = ( - AED7A97F2AC65A7D00000000 /* BUILD */, - AED7A97FFD2C140F00000000 /* image_properties_calculator.cc */, - ); - name = image; - sourceTree = ""; - }; - 1A7E690D9974D8B500000000 /* bazel-tulsi-includes */ = { - isa = PBXGroup; - children = ( - 1A7E690DFF57D04D00000000 /* x */, + B6073D5100A0230400000000 /* x */, ); name = "bazel-tulsi-includes"; sourceTree = ""; }; - 1A7E690D9D8EE90600000000 /* beauty */ = { + B6073D5126E799E900000000 /* face_detection */ = { isa = PBXGroup; children = ( - 1A7E690D7B0977E900000000 /* ios */, + 8F62469E2DD9171300000000 /* BUILD */, + 8F62469E4E319F4100000000 /* face_detection_short_range.tflite */, + ); + name = face_detection; + sourceTree = ""; + }; + B6073D5144FF67A600000000 /* tflite */ = { + isa = PBXGroup; + children = ( + 8F62469EAAEBDCD100000000 /* BUILD */, + 8F62469E57CDD24300000000 /* ssd_anchors_calculator.cc */, + 8F62469EC43404B200000000 /* tflite_custom_op_resolver_calculator.cc */, + 8F62469E50FA3B1400000000 /* tflite_model_calculator.cc */, + ); + name = tflite; + sourceTree = ""; + }; + B6073D5144FF67A600000001 /* tflite */ = { + isa = PBXGroup; + children = ( + 8F62469E14D6DD8600000000 /* BUILD */, + 8F62469E00E42C1500000000 /* config.h */, + 8F62469E1370E16B00000000 /* cpu_op_resolver.cc */, + 8F62469E470DC89E00000000 /* cpu_op_resolver.h */, + 8F62469EFD02751100000000 /* op_resolver.cc */, + 8F62469E89917A6900000000 /* op_resolver.h */, + B6073D51BDCD1F6B00000000 /* operations */, + 8F62469E8369D9F900000000 /* tflite_model_loader.cc */, + 8F62469E6661607500000000 /* tflite_model_loader.h */, + ); + name = tflite; + sourceTree = ""; + }; + B6073D51547F41C200000000 /* math */ = { + isa = PBXGroup; + children = ( + 8F62469E8968C08000000000 /* BUILD */, + 8F62469E0592E24D00000000 /* mat4.cpp */, + 8F62469ECB6D125D00000000 /* mat4.hpp */, + 8F62469E01C72EAB00000000 /* mat4.inl */, + 8F62469EB1FDA98700000000 /* math_utils.cpp */, + 8F62469EB16A0B0500000000 /* math_utils.hpp */, + 8F62469E0156E7A600000000 /* vec2.cpp */, + 8F62469E6F3A937000000000 /* vec2.hpp */, + 8F62469E2111801D00000000 /* vec2.inl */, + 8F62469E7FAD39F900000000 /* vec3.cpp */, + 8F62469EDC30573A00000000 /* vec3.hpp */, + 8F62469EC7C4069700000000 /* vec3.inl */, + 8F62469E7A9963A400000000 /* vec4.cpp */, + 8F62469E93A51CF900000000 /* vec4.hpp */, + 8F62469E44C7D79C00000000 /* vec4.inl */, + ); + name = math; + sourceTree = ""; + }; + B6073D5160F5208E00000000 /* beauty */ = { + isa = PBXGroup; + children = ( + B6073D51628F523900000000 /* ios */, ); name = beauty; sourceTree = ""; }; - 1A7E690D9D8EE90600000001 /* beauty */ = { + B6073D5160F5208E00000001 /* beauty */ = { isa = PBXGroup; children = ( - AED7A97F8F0BA60200000000 /* BUILD */, - AED7A97F350B780B00000000 /* face_mesh_module.cpp */, - AED7A97F8275616600000000 /* face_mesh_module.h */, - 1A7E690D7B0977E900000001 /* ios */, + 8F62469E7E422EC300000000 /* BUILD */, + 8F62469E8563DF9500000000 /* face_mesh_beauty_render.cc */, + 8F62469E992468E800000000 /* face_mesh_beauty_render.h */, + 8F62469E4CC6C91400000000 /* face_mesh_module.cc */, + 8F62469E426BAE8A00000000 /* face_mesh_module.h */, + 8F62469EA59EA68600000000 /* face_mesh_module_imp.cc */, + 8F62469EE980F42800000000 /* face_mesh_module_imp.h */, + B6073D51628F523900000001 /* ios */, ); name = beauty; sourceTree = ""; }; - 1A7E690DA1BDF39E00000000 /* face_mesh */ = { + B6073D5161E865A700000000 /* image */ = { isa = PBXGroup; children = ( - AED7A97F5F69EDD100000000 /* BUILD */, - 1A7E690D177BD5C500000001 /* calculators */, - 1A7E690D20CD24FA00000000 /* subgraphs */, + 8F62469E0F3F7D7100000000 /* BUILD */, + 8F62469E7D7F06EB00000000 /* image_properties_calculator.cc */, ); - name = face_mesh; + name = image; sourceTree = ""; }; - 1A7E690DA2C9D79C00000000 /* module */ = { + B6073D51628F523900000000 /* ios */ = { isa = PBXGroup; children = ( - 1A7E690D9D8EE90600000000 /* beauty */, + B6073D51E2C2B04800000000 /* OlaFaceUnityFramework-intermediates */, ); - name = module; + name = ios; sourceTree = ""; }; - 1A7E690DA2C9D79C00000001 /* module */ = { + B6073D51628F523900000001 /* ios */ = { isa = PBXGroup; children = ( - 1A7E690D9D8EE90600000001 /* beauty */, - 1A7E690DACBA322600000000 /* common */, + 8F62469EC4A7F5F700000000 /* BUILD */, + 8F62469ED999FFBC00000000 /* Info.plist */, + 8F62469EB114B9D600000000 /* OlaFaceUnity.h */, + 8F62469EF4C8279B00000000 /* OlaFaceUnity.mm */, ); - name = module; + name = ios; sourceTree = ""; }; - 1A7E690DA64DA2C200000000 /* Indexer */ = { + B6073D516A890A1B00000000 /* objc */ = { isa = PBXGroup; children = ( - AED7A97FB913DCD000000000 /* lib_idx_FaceMeshGPULibrary_2BF20B88_ios_min11.0.a */, - AED7A97FBEE6626C00000000 /* lib_idx_FaceMeshGPULibrary_2BF20B88_ios_min15.5.a */, - AED7A97F8E483A7800000000 /* lib_idx_MPPGraphGPUData_733A9D5A_ios_min11.0.a */, - AED7A97FC4F2652200000000 /* lib_idx_MPPGraphGPUData_733A9D5A_ios_min15.5.a */, - AED7A97F8676234E00000000 /* lib_idx_MPPMetalHelper_7397E6A5_ios_min11.0.a */, - AED7A97F8D8FA5E400000000 /* lib_idx_MPPMetalHelper_7397E6A5_ios_min15.5.a */, - AED7A97FA4F093DE00000000 /* lib_idx_MPPMetalUtil_E63D8158_ios_min11.0.a */, - AED7A97FB4326CBC00000000 /* lib_idx_MPPMetalUtil_E63D8158_ios_min15.5.a */, - AED7A97F79E3E67800000000 /* lib_idx_OlaFaceUnityLibrary_5CE49B93_ios_min11.0.a */, - AED7A97FE2F8115C00000000 /* lib_idx_OlaFaceUnityLibrary_5CE49B93_ios_min15.5.a */, - AED7A97FF8761CBE00000000 /* lib_idx_annotation_overlay_calculator_7B50CB48_ios_min11.0.a */, - AED7A97F793CF2A000000000 /* lib_idx_annotation_overlay_calculator_7B50CB48_ios_min15.5.a */, - AED7A97F56B9E0C600000000 /* lib_idx_annotation_renderer_BE836363_ios_min11.0.a */, - AED7A97F569BAB1800000000 /* lib_idx_annotation_renderer_BE836363_ios_min15.5.a */, - AED7A97F6BBCCA9800000000 /* lib_idx_begin_loop_calculator_FEDA75EA_ios_min11.0.a */, - AED7A97F004AA53400000000 /* lib_idx_begin_loop_calculator_FEDA75EA_ios_min15.5.a */, - AED7A97FC87753C600000000 /* lib_idx_clip_vector_size_calculator_02FA2733_ios_min11.0.a */, - AED7A97F6953E68600000000 /* lib_idx_clip_vector_size_calculator_02FA2733_ios_min15.5.a */, - AED7A97FC56FBE0A00000000 /* lib_idx_core_core-ios_4EDC2AF0_ios_min11.0.a */, - AED7A97F733BC1A800000000 /* lib_idx_core_core-ios_4EDC2AF0_ios_min15.5.a */, - AED7A97F36C8B0C800000000 /* lib_idx_cpu_op_resolver_741B9450_ios_min11.0.a */, - AED7A97FD16A91CE00000000 /* lib_idx_cpu_op_resolver_741B9450_ios_min15.5.a */, - AED7A97FB9BC893200000000 /* lib_idx_cpu_util_B64315B8_ios_min11.0.a */, - AED7A97FC8F4B9E000000000 /* lib_idx_cpu_util_B64315B8_ios_min15.5.a */, - AED7A97F9199F03800000000 /* lib_idx_detection_projection_calculator_9B95E740_ios_min11.0.a */, - AED7A97FDA1E3CA600000000 /* lib_idx_detection_projection_calculator_9B95E740_ios_min15.5.a */, - AED7A97F17E9E7AC00000000 /* lib_idx_gl_calculator_helper_D8986C65_ios_min11.0.a */, - AED7A97FEDAA79AC00000000 /* lib_idx_gl_calculator_helper_D8986C65_ios_min15.5.a */, - AED7A97F321D0D7800000000 /* lib_idx_gl_simple_shaders_6A91D77D_ios_min11.0.a */, - AED7A97FA1BB1D7E00000000 /* lib_idx_gl_simple_shaders_6A91D77D_ios_min15.5.a */, - AED7A97F7438783800000000 /* lib_idx_gpu_buffer_multi_pool_gl_context_4D0E07B8_ios_min11.0.a */, - AED7A97F6A89A27A00000000 /* lib_idx_gpu_buffer_multi_pool_gl_context_4D0E07B8_ios_min15.5.a */, - AED7A97F3743224400000000 /* lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_26C42D3D_ios_min11.0.a */, - AED7A97F4E8A433800000000 /* lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_26C42D3D_ios_min15.5.a */, - AED7A97F21F0D81000000000 /* lib_idx_gpu_buffer_storage_gpu_buffer_format_BA46520A_ios_min11.0.a */, - AED7A97FF5DC96EC00000000 /* lib_idx_gpu_buffer_storage_gpu_buffer_format_BA46520A_ios_min15.5.a */, - AED7A97F76AD183E00000000 /* lib_idx_image_properties_calculator_gpu_service_6BF370A2_ios_min11.0.a */, - AED7A97FA843B95C00000000 /* lib_idx_image_properties_calculator_gpu_service_6BF370A2_ios_min15.5.a */, - AED7A97F0453AA5800000000 /* lib_idx_image_to_tensor_calculator_C3DB5E1E_ios_min11.0.a */, - AED7A97FDE84DAA600000000 /* lib_idx_image_to_tensor_calculator_C3DB5E1E_ios_min15.5.a */, - AED7A97F1F27769C00000000 /* lib_idx_image_to_tensor_converter_metal_9AA64D0A_ios_min11.0.a */, - AED7A97F4144F2D600000000 /* lib_idx_image_to_tensor_converter_metal_9AA64D0A_ios_min15.5.a */, - AED7A97FA7048F5200000000 /* lib_idx_image_to_tensor_converter_opencv_F40C896E_ios_min11.0.a */, - AED7A97FAF93AF3000000000 /* lib_idx_image_to_tensor_converter_opencv_F40C896E_ios_min15.5.a */, - AED7A97F87A2EB9600000000 /* lib_idx_inference_calculator_interface_inference_calculator_cpu_AEFE6570_ios_min11.0.a */, - AED7A97F8F4205CE00000000 /* lib_idx_inference_calculator_interface_inference_calculator_cpu_AEFE6570_ios_min15.5.a */, - AED7A97F97D718F200000000 /* lib_idx_inference_calculator_metal_712F45E9_ios_min11.0.a */, - AED7A97F8D8DDBC600000000 /* lib_idx_inference_calculator_metal_712F45E9_ios_min15.5.a */, - AED7A97FAD93CF9C00000000 /* lib_idx_math_3043B97F_ios_min11.0.a */, - AED7A97F6A2EDEA000000000 /* lib_idx_math_3043B97F_ios_min15.5.a */, - AED7A97FC56C6E9000000000 /* lib_idx_max_unpooling_max_pool_argmax_92E156D6_ios_min11.0.a */, - AED7A97F10B91A6400000000 /* lib_idx_max_unpooling_max_pool_argmax_92E156D6_ios_min15.5.a */, - AED7A97FA4952BDE00000000 /* lib_idx_mediapipe_framework_ios_E5983FAB_ios_min11.0.a */, - AED7A97F3D487D7600000000 /* lib_idx_mediapipe_framework_ios_E5983FAB_ios_min15.5.a */, - AED7A97F9C7F492A00000000 /* lib_idx_non_max_suppression_calculator_EA803631_ios_min11.0.a */, - AED7A97F2BFD778400000000 /* lib_idx_non_max_suppression_calculator_EA803631_ios_min15.5.a */, - AED7A97FF06E61C200000000 /* lib_idx_olamodule_common_library_4A2D4D8A_ios_min11.0.a */, - AED7A97F09DE828200000000 /* lib_idx_olamodule_common_library_4A2D4D8A_ios_min15.5.a */, - AED7A97F0D37EB1400000000 /* lib_idx_op_resolver_E390FDC7_ios_min11.0.a */, - AED7A97F7EECC88600000000 /* lib_idx_op_resolver_E390FDC7_ios_min15.5.a */, - AED7A97FADF4C90200000000 /* lib_idx_pixel_buffer_pool_util_1B0D8C74_ios_min11.0.a */, - AED7A97FAD72A5DA00000000 /* lib_idx_pixel_buffer_pool_util_1B0D8C74_ios_min15.5.a */, - AED7A97F1D11BD0C00000000 /* lib_idx_previous_loopback_calculator_header_util_D9AEB78A_ios_min11.0.a */, - AED7A97FFF2AB57800000000 /* lib_idx_previous_loopback_calculator_header_util_D9AEB78A_ios_min15.5.a */, - AED7A97F511EA79600000000 /* lib_idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_7F9F05C6_ios_min11.0.a */, - AED7A97F2BAC9A6C00000000 /* lib_idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_7F9F05C6_ios_min15.5.a */, - AED7A97FDCFC782600000000 /* lib_idx_ref_gpuimagemath_gpuimageutil_8BF43A5D_ios_min11.0.a */, - AED7A97F59B674E800000000 /* lib_idx_ref_gpuimagemath_gpuimageutil_8BF43A5D_ios_min15.5.a */, - AED7A97F6D305F1600000000 /* lib_idx_resource_util_B6FA1F0B_ios_min11.0.a */, - AED7A97F48DBF45200000000 /* lib_idx_resource_util_B6FA1F0B_ios_min15.5.a */, - AED7A97FE5E909D200000000 /* lib_idx_shader_util_F77AE4F3_ios_min11.0.a */, - AED7A97F643D598200000000 /* lib_idx_shader_util_F77AE4F3_ios_min15.5.a */, - AED7A97FAAE0F57200000000 /* lib_idx_split_vector_calculator_6654799A_ios_min11.0.a */, - AED7A97FC0E755D400000000 /* lib_idx_split_vector_calculator_6654799A_ios_min15.5.a */, - AED7A97FCFB0DD5600000000 /* lib_idx_tensors_to_detections_calculator_888E512F_ios_min11.0.a */, - AED7A97F43CED18C00000000 /* lib_idx_tensors_to_detections_calculator_888E512F_ios_min15.5.a */, - AED7A97FDD1949C800000000 /* lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_7ED8D1B5_ios_min11.0.a */, - AED7A97F0556389200000000 /* lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_7ED8D1B5_ios_min15.5.a */, - AED7A97FBB00542E00000000 /* lib_idx_tflite_custom_op_resolver_calculator_042597A8_ios_min11.0.a */, - AED7A97FCCF9B5CC00000000 /* lib_idx_tflite_custom_op_resolver_calculator_042597A8_ios_min15.5.a */, - AED7A97FCC9C8CEA00000000 /* lib_idx_tflite_model_calculator_end_loop_calculator_6A228ACC_ios_min11.0.a */, - AED7A97FB98F90AE00000000 /* lib_idx_tflite_model_calculator_end_loop_calculator_6A228ACC_ios_min15.5.a */, - AED7A97FEB454D0800000000 /* lib_idx_tflite_model_loader_F900857E_ios_min11.0.a */, - AED7A97F7668967200000000 /* lib_idx_tflite_model_loader_F900857E_ios_min15.5.a */, - AED7A97F71FB390000000000 /* 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_A15F304E_ios_min11.0.a */, - AED7A97FDCB5CFF600000000 /* 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_A15F304E_ios_min15.5.a */, - AED7A97F99018DD600000000 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_AB0D0716_ios_min11.0.a */, - AED7A97F4231667400000000 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_AB0D0716_ios_min15.5.a */, - AED7A97F5C1FBB0A00000000 /* lib_idx_transpose_conv_bias_207EFBC1_ios_min11.0.a */, - AED7A97FF83CF85400000000 /* lib_idx_transpose_conv_bias_207EFBC1_ios_min15.5.a */, - AED7A97F2783FF8600000000 /* lib_idx_util_28409609_ios_min11.0.a */, - AED7A97F0F5DFEC400000000 /* lib_idx_util_28409609_ios_min15.5.a */, + 8F62469E004ED87500000000 /* BUILD */, + 8F62469ED30BA54B00000000 /* CFHolder.h */, + 8F62469E9360D7F700000000 /* MPPGraph.h */, + 8F62469EEEE7D66700000000 /* MPPGraph.mm */, + 8F62469EFF81542500000000 /* MPPTimestampConverter.h */, + 8F62469E48E4E18100000000 /* MPPTimestampConverter.mm */, + 8F62469EC1EEAB6200000000 /* NSError+util_status.h */, + 8F62469E998F8A2E00000000 /* NSError+util_status.mm */, + 8F62469E094AB7D000000000 /* Weakify.h */, + 8F62469E4C094F0A00000000 /* util.cc */, + 8F62469EB3AF12A500000000 /* util.h */, + ); + name = objc; + sourceTree = ""; + }; + B6073D516DF9891700000000 /* Indexer */ = { + isa = PBXGroup; + children = ( + 8F62469E9FCBB85800000000 /* lib_idx_FaceMeshGPULibrary_61E6B091_ios_min11.0.a */, + 8F62469EBE46B07800000000 /* lib_idx_FaceMeshGPULibrary_61E6B091_ios_min15.5.a */, + 8F62469ED1F0DC8C00000000 /* lib_idx_MPPGraphGPUData_DE328030_ios_min11.0.a */, + 8F62469EB1085FB600000000 /* lib_idx_MPPGraphGPUData_DE328030_ios_min15.5.a */, + 8F62469E17399DDC00000000 /* lib_idx_MPPMetalHelper_8A6739B5_ios_min11.0.a */, + 8F62469E5BC465A400000000 /* lib_idx_MPPMetalHelper_8A6739B5_ios_min15.5.a */, + 8F62469E8F2DAC9800000000 /* lib_idx_MPPMetalUtil_622319D3_ios_min11.0.a */, + 8F62469E2BADC1D200000000 /* lib_idx_MPPMetalUtil_622319D3_ios_min15.5.a */, + 8F62469EDCE124F400000000 /* lib_idx_OlaFaceUnityLibrary_63B2D14F_ios_min11.0.a */, + 8F62469E1E29E90E00000000 /* lib_idx_OlaFaceUnityLibrary_63B2D14F_ios_min15.5.a */, + 8F62469EDF9B2B7600000000 /* lib_idx_annotation_overlay_calculator_7772C341_ios_min11.0.a */, + 8F62469E013DE90000000000 /* lib_idx_annotation_overlay_calculator_7772C341_ios_min15.5.a */, + 8F62469E610A735200000000 /* lib_idx_annotation_renderer_1DCBFDF7_ios_min11.0.a */, + 8F62469E9C12AC1000000000 /* lib_idx_annotation_renderer_1DCBFDF7_ios_min15.5.a */, + 8F62469ED4FD547400000000 /* lib_idx_begin_loop_calculator_55C0335F_ios_min11.0.a */, + 8F62469E43C533AA00000000 /* lib_idx_begin_loop_calculator_55C0335F_ios_min15.5.a */, + 8F62469EA6CEF2BC00000000 /* lib_idx_clip_vector_size_calculator_B472A55B_ios_min11.0.a */, + 8F62469EBC7F293600000000 /* lib_idx_clip_vector_size_calculator_B472A55B_ios_min15.5.a */, + 8F62469E89BFDCEA00000000 /* lib_idx_core_core-ios_731E135C_ios_min11.0.a */, + 8F62469EDF10012C00000000 /* lib_idx_core_core-ios_731E135C_ios_min15.5.a */, + 8F62469E029424C000000000 /* lib_idx_cpu_op_resolver_E63A3714_ios_min11.0.a */, + 8F62469E85ED468800000000 /* lib_idx_cpu_op_resolver_E63A3714_ios_min15.5.a */, + 8F62469EEB9B4B7E00000000 /* lib_idx_cpu_util_D57AACFF_ios_min11.0.a */, + 8F62469E808D9C3C00000000 /* lib_idx_cpu_util_D57AACFF_ios_min15.5.a */, + 8F62469ECE8AEA1800000000 /* lib_idx_detection_projection_calculator_07107D71_ios_min11.0.a */, + 8F62469E3FF92D1600000000 /* lib_idx_detection_projection_calculator_07107D71_ios_min15.5.a */, + 8F62469E75DC94FA00000000 /* lib_idx_gl_calculator_helper_6AE62265_ios_min11.0.a */, + 8F62469EAE2EAF7600000000 /* lib_idx_gl_calculator_helper_6AE62265_ios_min15.5.a */, + 8F62469E0EA9897400000000 /* lib_idx_gl_simple_shaders_2CB9CEAD_ios_min11.0.a */, + 8F62469EC9964E7600000000 /* lib_idx_gl_simple_shaders_2CB9CEAD_ios_min15.5.a */, + 8F62469E67F72F7400000000 /* lib_idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min11.0.a */, + 8F62469E2503320C00000000 /* lib_idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min15.5.a */, + 8F62469E3AE818C400000000 /* lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min11.0.a */, + 8F62469EB9DEA8D000000000 /* lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min15.5.a */, + 8F62469EEFDC836800000000 /* lib_idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min11.0.a */, + 8F62469E98313BAC00000000 /* lib_idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min15.5.a */, + 8F62469EC53CE65200000000 /* lib_idx_image_properties_calculator_gpu_service_941BB6CA_ios_min11.0.a */, + 8F62469E9A67603600000000 /* lib_idx_image_properties_calculator_gpu_service_941BB6CA_ios_min15.5.a */, + 8F62469E49E053D400000000 /* lib_idx_image_to_tensor_calculator_77E4634D_ios_min11.0.a */, + 8F62469E68ACC6AC00000000 /* lib_idx_image_to_tensor_calculator_77E4634D_ios_min15.5.a */, + 8F62469E741FC72000000000 /* lib_idx_image_to_tensor_converter_metal_A1DB3550_ios_min11.0.a */, + 8F62469E589A330C00000000 /* lib_idx_image_to_tensor_converter_metal_A1DB3550_ios_min15.5.a */, + 8F62469E5A86F8CA00000000 /* lib_idx_image_to_tensor_converter_opencv_1FC75D94_ios_min11.0.a */, + 8F62469EA6A3680800000000 /* lib_idx_image_to_tensor_converter_opencv_1FC75D94_ios_min15.5.a */, + 8F62469EEB12474400000000 /* lib_idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min11.0.a */, + 8F62469E6AB872C600000000 /* lib_idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min15.5.a */, + 8F62469ED92E9DBA00000000 /* lib_idx_inference_calculator_metal_65084AC7_ios_min11.0.a */, + 8F62469EFFA887E800000000 /* lib_idx_inference_calculator_metal_65084AC7_ios_min15.5.a */, + 8F62469E3216363400000000 /* lib_idx_math_661952D5_ios_min11.0.a */, + 8F62469E64AF57E400000000 /* lib_idx_math_661952D5_ios_min15.5.a */, + 8F62469E888D533E00000000 /* lib_idx_max_unpooling_max_pool_argmax_09627F19_ios_min11.0.a */, + 8F62469E66FF33FC00000000 /* lib_idx_max_unpooling_max_pool_argmax_09627F19_ios_min15.5.a */, + 8F62469E2B9C383A00000000 /* lib_idx_mediapipe_framework_ios_596FA5D1_ios_min11.0.a */, + 8F62469E1E79ACEC00000000 /* lib_idx_mediapipe_framework_ios_596FA5D1_ios_min15.5.a */, + 8F62469E4BC5B6E000000000 /* lib_idx_non_max_suppression_calculator_E0C32C58_ios_min11.0.a */, + 8F62469EB3DBCBD400000000 /* lib_idx_non_max_suppression_calculator_E0C32C58_ios_min15.5.a */, + 8F62469E62CE283E00000000 /* lib_idx_olamodule_common_library_9ADAC3A9_ios_min11.0.a */, + 8F62469E7C7EAFF400000000 /* lib_idx_olamodule_common_library_9ADAC3A9_ios_min15.5.a */, + 8F62469E9F01B81400000000 /* lib_idx_op_resolver_29CCF89E_ios_min11.0.a */, + 8F62469E51E896DC00000000 /* lib_idx_op_resolver_29CCF89E_ios_min15.5.a */, + 8F62469E5202380400000000 /* lib_idx_pixel_buffer_pool_util_C139F8B5_ios_min11.0.a */, + 8F62469ED78C49CA00000000 /* lib_idx_pixel_buffer_pool_util_C139F8B5_ios_min15.5.a */, + 8F62469E085F8F9000000000 /* lib_idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min11.0.a */, + 8F62469E0CEA424A00000000 /* lib_idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min15.5.a */, + 8F62469E3FBDA1BA00000000 /* lib_idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min11.0.a */, + 8F62469ED2C19F4E00000000 /* lib_idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min15.5.a */, + 8F62469EADA7E74800000000 /* lib_idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min11.0.a */, + 8F62469E6562E89600000000 /* lib_idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min15.5.a */, + 8F62469E8B3041AE00000000 /* lib_idx_resource_util_0C14DDDC_ios_min11.0.a */, + 8F62469E9075CB4E00000000 /* lib_idx_resource_util_0C14DDDC_ios_min15.5.a */, + 8F62469EB31F330C00000000 /* lib_idx_shader_util_209E4ED9_ios_min11.0.a */, + 8F62469EB86681C200000000 /* lib_idx_shader_util_209E4ED9_ios_min15.5.a */, + 8F62469EF3D7B8CE00000000 /* lib_idx_split_vector_calculator_73890910_ios_min11.0.a */, + 8F62469EAF11437800000000 /* lib_idx_split_vector_calculator_73890910_ios_min15.5.a */, + 8F62469E2451D66600000000 /* lib_idx_tensors_to_detections_calculator_B4C99DEA_ios_min11.0.a */, + 8F62469E8BDFD12800000000 /* lib_idx_tensors_to_detections_calculator_B4C99DEA_ios_min15.5.a */, + 8F62469EFEC0AA7A00000000 /* lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min11.0.a */, + 8F62469ECE781BC400000000 /* lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min15.5.a */, + 8F62469E674B854C00000000 /* lib_idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min11.0.a */, + 8F62469E8E4BB78C00000000 /* lib_idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min15.5.a */, + 8F62469E7371AF6400000000 /* lib_idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min11.0.a */, + 8F62469E07AA7C9800000000 /* lib_idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min15.5.a */, + 8F62469E10E53D4400000000 /* lib_idx_tflite_model_loader_6F62D289_ios_min11.0.a */, + 8F62469E909C31C200000000 /* lib_idx_tflite_model_loader_6F62D289_ios_min15.5.a */, + 8F62469E6CEE53C200000000 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min11.0.a */, + 8F62469E6F05DF7E00000000 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min15.5.a */, + 8F62469E9713725000000000 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min11.0.a */, + 8F62469E0CD245CA00000000 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min15.5.a */, + 8F62469ECB93143800000000 /* lib_idx_transpose_conv_bias_94247583_ios_min11.0.a */, + 8F62469EA94AD89E00000000 /* lib_idx_transpose_conv_bias_94247583_ios_min15.5.a */, + 8F62469EE10D2C8600000000 /* lib_idx_util_66001351_ios_min11.0.a */, + 8F62469EA4CF090C00000000 /* lib_idx_util_66001351_ios_min15.5.a */, ); name = Indexer; sourceTree = ""; }; - 1A7E690DACBA322600000000 /* common */ = { + B6073D517D56836F00000000 /* internal */ = { isa = PBXGroup; children = ( - AED7A97F6680C42E00000000 /* BUILD */, - AED7A97F87DFEA2300000000 /* OlaGraph.cpp */, - AED7A97FF306D45600000000 /* OlaGraph.hpp */, + 8F62469EC5A8384400000000 /* BUILD */, + 8F62469E225F8AC300000000 /* callback_packet_calculator.cc */, ); - name = common; + name = internal; sourceTree = ""; }; - 1A7E690DAF2F994700000000 /* modules */ = { + B6073D5180FFB1C700000000 /* module */ = { isa = PBXGroup; children = ( - 1A7E690D34F194B400000000 /* face_detection */, - 1A7E690D71E1389600000000 /* face_landmark */, + B6073D5160F5208E00000000 /* beauty */, ); - name = modules; + name = module; sourceTree = ""; }; - 1A7E690DAFC71AAD00000000 /* mediapipe */ = { + B6073D5180FFB1C700000001 /* module */ = { isa = PBXGroup; children = ( - 1A7E690D7839CC7000000000 /* render */, + B6073D5160F5208E00000001 /* beauty */, + B6073D51BC8F762D00000000 /* common */, ); - name = mediapipe; + name = module; sourceTree = ""; }; - 1A7E690DAFC71AAD00000001 /* mediapipe */ = { + B6073D51860C2AA800000000 /* graphs */ = { isa = PBXGroup; children = ( - 1A7E690D177BD5C500000000 /* calculators */, - 1A7E690D3E3DDEFC00000000 /* gpu */, - 1A7E690DBFECCC7F00000000 /* graphs */, - 1A7E690DAF2F994700000000 /* modules */, - 1A7E690D65368C9800000000 /* objc */, - 1A7E690D7839CC7000000001 /* render */, - 1A7E690D3EA441D600000001 /* util */, - ); - name = mediapipe; - sourceTree = ""; - }; - 1A7E690DBFECCC7F00000000 /* graphs */ = { - isa = PBXGroup; - children = ( - 1A7E690DA1BDF39E00000000 /* face_mesh */, + B6073D51F98D880A00000000 /* face_mesh */, ); name = graphs; sourceTree = ""; }; - 1A7E690DC9FE8CC800000000 /* tflite */ = { + B6073D51A67C5B3100000000 /* tensor */ = { isa = PBXGroup; children = ( - AED7A97F7EACDF6900000000 /* BUILD */, - AED7A97F6A77E38000000000 /* ssd_anchors_calculator.cc */, - AED7A97F610B41F300000000 /* tflite_custom_op_resolver_calculator.cc */, - AED7A97FEB4C12EA00000000 /* tflite_model_calculator.cc */, + 8F62469EBBD68CCB00000000 /* BUILD */, + 8F62469E549B74DB00000000 /* image_to_tensor_calculator.cc */, + 8F62469EA7FB485A00000000 /* image_to_tensor_converter.h */, + 8F62469E635CAFD500000000 /* image_to_tensor_converter_metal.cc */, + 8F62469E1CCA511900000000 /* image_to_tensor_converter_metal.h */, + 8F62469EF332D51F00000000 /* image_to_tensor_converter_opencv.cc */, + 8F62469E5EECF1D200000000 /* image_to_tensor_converter_opencv.h */, + 8F62469E2CF83E7600000000 /* image_to_tensor_utils.cc */, + 8F62469E3099305600000000 /* image_to_tensor_utils.h */, + 8F62469E8FB74E7600000000 /* inference_calculator.cc */, + 8F62469E032AE7D900000000 /* inference_calculator.h */, + 8F62469E29F2D5B300000000 /* inference_calculator_cpu.cc */, + 8F62469E134BBB5F00000000 /* inference_calculator_metal.cc */, + 8F62469E6414206900000000 /* tensors_to_detections_calculator.cc */, + 8F62469ED8BCE6D000000000 /* tensors_to_floats_calculator.cc */, + 8F62469ED84977E600000000 /* tensors_to_landmarks_calculator.cc */, ); - name = tflite; + name = tensor; sourceTree = ""; }; - 1A7E690DC9FE8CC800000001 /* tflite */ = { + B6073D51ABA9B7E300000000 /* gpu */ = { isa = PBXGroup; children = ( - AED7A97F36FF738D00000000 /* BUILD */, - AED7A97FA18A895E00000000 /* config.h */, - AED7A97F4F7EA7CE00000000 /* cpu_op_resolver.cc */, - AED7A97FC12B324000000000 /* cpu_op_resolver.h */, - AED7A97F7EA8AD8900000000 /* op_resolver.cc */, - AED7A97FB995807E00000000 /* op_resolver.h */, - 1A7E690D03BF169D00000000 /* operations */, - AED7A97F8A2AAB7400000000 /* tflite_model_loader.cc */, - AED7A97F9B66645D00000000 /* tflite_model_loader.h */, + 8F62469E10398DD500000000 /* BUILD */, + 8F62469E3564243100000000 /* MPPGraphGPUData.h */, + 8F62469EBA4BE9D200000000 /* MPPGraphGPUData.mm */, + 8F62469EB4D149AA00000000 /* MPPMetalHelper.h */, + 8F62469E849B03E000000000 /* MPPMetalHelper.mm */, + 8F62469E1046F3BF00000000 /* MPPMetalUtil.h */, + 8F62469EFF18EE3C00000000 /* MPPMetalUtil.mm */, + 8F62469EE2AAAAC700000000 /* attachments.h */, + 8F62469E43717CCB00000000 /* gl_base.h */, + 8F62469EDD869D9E00000000 /* gl_calculator_helper.cc */, + 8F62469E965A610100000000 /* gl_calculator_helper.h */, + 8F62469E5A5CE83A00000000 /* gl_calculator_helper_impl.h */, + 8F62469EC05BE00400000000 /* gl_calculator_helper_impl_common.cc */, + 8F62469ED11949C300000000 /* gl_context.cc */, + 8F62469E754BEB6400000000 /* gl_context.h */, + 8F62469E4AFAD92200000000 /* gl_context_eagl.cc */, + 8F62469E8DC1865400000000 /* gl_context_internal.h */, + 8F62469E1AA4F1AC00000000 /* gl_simple_shaders.cc */, + 8F62469E2226086B00000000 /* gl_simple_shaders.h */, + 8F62469EA3E97E1400000000 /* gl_texture_buffer.cc */, + 8F62469E5825859100000000 /* gl_texture_buffer.h */, + 8F62469EF51362E900000000 /* gl_texture_buffer_pool.cc */, + 8F62469E33969E5B00000000 /* gl_texture_buffer_pool.h */, + 8F62469EEA623A4800000000 /* gl_texture_view.cc */, + 8F62469E1DE1C67300000000 /* gl_texture_view.h */, + 8F62469E8A36159200000000 /* gl_thread_collector.h */, + 8F62469E8EDC082600000000 /* gpu_buffer.cc */, + 8F62469E658A4F0A00000000 /* gpu_buffer.h */, + 8F62469E92E2BF3700000000 /* gpu_buffer_format.cc */, + 8F62469EE545996200000000 /* gpu_buffer_format.h */, + 8F62469E2F39A2D500000000 /* gpu_buffer_multi_pool.cc */, + 8F62469E2E2AC0E200000000 /* gpu_buffer_multi_pool.h */, + 8F62469E2E9744D600000000 /* gpu_buffer_storage.cc */, + 8F62469E831E6AA800000000 /* gpu_buffer_storage.h */, + 8F62469E489C692A00000000 /* gpu_buffer_storage_cv_pixel_buffer.cc */, + 8F62469EF4DBABD700000000 /* gpu_buffer_storage_cv_pixel_buffer.h */, + 8F62469E2E4BDDE900000000 /* gpu_buffer_storage_image_frame.h */, + 8F62469E984EF97C00000000 /* gpu_service.cc */, + 8F62469EC6F9540300000000 /* gpu_service.h */, + 8F62469E8618537700000000 /* gpu_shared_data_internal.cc */, + 8F62469EABDC185C00000000 /* gpu_shared_data_internal.h */, + 8F62469EE51F86FE00000000 /* graph_support.h */, + 8F62469EBF95A75D00000000 /* image_frame_view.h */, + 8F62469EDAE0FA6B00000000 /* pixel_buffer_pool_util.h */, + 8F62469E357DD06500000000 /* pixel_buffer_pool_util.mm */, + 8F62469E369A201C00000000 /* shader_util.cc */, + 8F62469EAFD40B0000000000 /* shader_util.h */, ); - name = tflite; + name = gpu; sourceTree = ""; }; - 1A7E690DDE22F5B400000000 /* core */ = { + B6073D51AFFF10B500000000 /* render */ = { isa = PBXGroup; children = ( - AED7A97FFC0EF90200000000 /* BUILD */, - AED7A97F861C82C600000000 /* begin_loop_calculator.cc */, - AED7A97FEB6CA5E900000000 /* begin_loop_calculator.h */, - AED7A97F29667CB800000000 /* clip_vector_size_calculator.cc */, - AED7A97F2B05D03900000000 /* clip_vector_size_calculator.h */, - AED7A97F4528D20000000000 /* constant_side_packet_calculator.cc */, - AED7A97F3CC849C200000000 /* end_loop_calculator.cc */, - AED7A97F55FAB76100000000 /* end_loop_calculator.h */, - AED7A97FC4B69F3800000000 /* flow_limiter_calculator.cc */, - AED7A97FCD95B30F00000000 /* gate_calculator.cc */, - AED7A97F3634749B00000000 /* previous_loopback_calculator.cc */, - AED7A97FF2D261CD00000000 /* split_proto_list_calculator.cc */, - AED7A97FA60E9BF200000000 /* split_vector_calculator.cc */, - AED7A97FF7565D9800000000 /* split_vector_calculator.h */, + B6073D5180FFB1C700000000 /* module */, ); - name = core; + name = render; sourceTree = ""; }; - 1A7E690DDE22F5B400000001 /* core */ = { + B6073D51AFFF10B500000001 /* render */ = { isa = PBXGroup; children = ( - AED7A97F506A492500000000 /* BUILD */, - AED7A97F5F82C4D900000000 /* CVFramebuffer.hpp */, - AED7A97F115CC07300000000 /* Context.cpp */, - AED7A97FA2E9BD8400000000 /* Context.hpp */, - AED7A97F46361A7400000000 /* Filter.cpp */, - AED7A97FD487255900000000 /* Filter.hpp */, - AED7A97FFAB2EC1300000000 /* FilterGroup.cpp */, - AED7A97F932343DE00000000 /* FilterGroup.hpp */, - AED7A97F2A43360700000000 /* Framebuffer.cpp */, - AED7A97F76795D6D00000000 /* Framebuffer.hpp */, - AED7A97F731BD67000000000 /* FramebufferCache.cpp */, - AED7A97F47EFAC5200000000 /* FramebufferCache.hpp */, - AED7A97FE8D550C300000000 /* GLProgram.cpp */, - AED7A97FF92BBDBD00000000 /* GLProgram.hpp */, - AED7A97F12C953C600000000 /* GPUImage-x.h */, - AED7A97F70B3208200000000 /* GPUImageMacros.h */, - AED7A97F4B8CA68500000000 /* GPUImageTarget.h */, - AED7A97F054C67EB00000000 /* GPUImageUtil.cpp */, - AED7A97F38E88DF400000000 /* GPUImageUtil.h */, - AED7A97F815E3DC900000000 /* IOSTarget.cpp */, - AED7A97F02C2765300000000 /* IOSTarget.hpp */, - AED7A97F8BBC9F7900000000 /* Ref.cpp */, - AED7A97F2D2504B400000000 /* Ref.hpp */, - AED7A97F7352B17300000000 /* Source.cpp */, - AED7A97F866604AE00000000 /* Source.hpp */, - AED7A97FF382926900000000 /* SourceCamera.cpp */, - AED7A97F33F60BE100000000 /* SourceCamera.hpp */, - AED7A97FE04A951600000000 /* SourceImage.cpp */, - AED7A97F1D95D95600000000 /* SourceImage.hpp */, - AED7A97F30D1B2CD00000000 /* Target.cpp */, - AED7A97F7DD0DFE500000000 /* Target.hpp */, - AED7A97F024E437300000000 /* TargetView.cpp */, - AED7A97F9FB0CCE200000000 /* TargetView.hpp */, - 1A7E690D8C8C90B800000000 /* math */, - AED7A97F4373C5BE00000000 /* math.cpp */, - AED7A97FB344F9F800000000 /* math.hpp */, + B6073D5117D4EEA300000001 /* core */, + B6073D5180FFB1C700000001 /* module */, ); - name = core; + name = render; sourceTree = ""; }; - 1A7E690DF1A27F9600000000 /* OlaFaceUnityFramework-intermediates */ = { + B6073D51BC8F762D00000000 /* common */ = { isa = PBXGroup; children = ( - AED7A97F96E6076A00000000 /* Info.plist */, + 8F62469E6E52672200000000 /* BUILD */, + 8F62469EB288401C00000000 /* ola_graph.cc */, + 8F62469EB6285B2000000000 /* ola_graph.h */, + ); + name = common; + sourceTree = ""; + }; + B6073D51BDCD1F6B00000000 /* operations */ = { + isa = PBXGroup; + children = ( + 8F62469EBB40D9BF00000000 /* BUILD */, + 8F62469E9298B3CD00000000 /* landmarks_to_transform_matrix.cc */, + 8F62469E7CF00B4E00000000 /* landmarks_to_transform_matrix.h */, + 8F62469ECDEAEE5C00000000 /* max_pool_argmax.cc */, + 8F62469E0CFA3AED00000000 /* max_pool_argmax.h */, + 8F62469EF18A35B600000000 /* max_unpooling.cc */, + 8F62469E3101686800000000 /* max_unpooling.h */, + 8F62469E096C09DF00000000 /* transform_landmarks.cc */, + 8F62469E4863BAE900000000 /* transform_landmarks.h */, + 8F62469E3EF5E91200000000 /* transform_tensor_bilinear.cc */, + 8F62469EA1FC1CB100000000 /* transform_tensor_bilinear.h */, + 8F62469EE7ED8E2C00000000 /* transpose_conv_bias.cc */, + 8F62469E2665A36C00000000 /* transpose_conv_bias.h */, + ); + name = operations; + sourceTree = ""; + }; + B6073D51C5B1B94C00000000 /* modules */ = { + isa = PBXGroup; + children = ( + B6073D5126E799E900000000 /* face_detection */, + B6073D51FA77839C00000000 /* face_landmark */, + ); + name = modules; + sourceTree = ""; + }; + B6073D51CAE1C70700000000 /* subgraphs */ = { + isa = PBXGroup; + children = ( + 8F62469EA699A49F00000000 /* BUILD */, + ); + name = subgraphs; + sourceTree = ""; + }; + B6073D51D9D43D6F00000000 /* mediapipe */ = { + isa = PBXGroup; + children = ( + B6073D51AFFF10B500000000 /* render */, + ); + name = mediapipe; + sourceTree = ""; + }; + B6073D51D9D43D6F00000001 /* mediapipe */ = { + isa = PBXGroup; + children = ( + B6073D510BCCD63300000000 /* calculators */, + B6073D51ABA9B7E300000000 /* gpu */, + B6073D51860C2AA800000000 /* graphs */, + B6073D51C5B1B94C00000000 /* modules */, + B6073D516A890A1B00000000 /* objc */, + B6073D51AFFF10B500000001 /* render */, + B6073D51F77EA18700000001 /* util */, + ); + name = mediapipe; + sourceTree = ""; + }; + B6073D51E2C2B04800000000 /* OlaFaceUnityFramework-intermediates */ = { + isa = PBXGroup; + children = ( + 8F62469EF66CD23100000000 /* Info.plist */, ); name = "OlaFaceUnityFramework-intermediates"; sourceTree = ""; }; - 1A7E690DF79A8EE400000000 /* mainGroup */ = { + B6073D51E306BD5F00000000 /* third_party */ = { isa = PBXGroup; children = ( - 1A7E690D5270F98E00000000 /* Products */, - 1A7E690DAFC71AAD00000001 /* mediapipe */, - 1A7E690D825F78B800000000 /* third_party */, + 8F62469EE75E0B9900000000 /* BUILD */, + ); + name = third_party; + sourceTree = ""; + }; + B6073D51EFAF6E4700000000 /* mainGroup */ = { + isa = PBXGroup; + children = ( + B6073D51F526F47100000000 /* Products */, + B6073D51D9D43D6F00000001 /* mediapipe */, + B6073D51E306BD5F00000000 /* third_party */, ); name = mainGroup; path = ../../../../..; sourceTree = SOURCE_ROOT; }; - 1A7E690DFF57D04D00000000 /* x */ = { + B6073D51F526F47100000000 /* Products */ = { isa = PBXGroup; children = ( - 1A7E690DFF57D04D00000001 /* x */, + B6073D516DF9891700000000 /* Indexer */, + 8F62469E5B357FC400000000 /* OlaFaceUnityFramework.framework */, + B6073D511AD359C600000000 /* bazel-tulsi-includes */, + 8F62469E7D01462600000000 /* libmediapipe-render-module-beauty-ios-OlaFaceUnityLibrary.a */, ); - name = x; + name = Products; sourceTree = ""; }; - 1A7E690DFF57D04D00000001 /* x */ = { + B6073D51F77EA18700000000 /* util */ = { isa = PBXGroup; children = ( - 1A7E690DAFC71AAD00000000 /* mediapipe */, + 8F62469E34B8327500000000 /* BUILD */, + 8F62469E9E41D6ED00000000 /* annotation_overlay_calculator.cc */, + 8F62469EFB24DFE200000000 /* association_calculator.h */, + 8F62469EE46A0E9300000000 /* association_norm_rect_calculator.cc */, + 8F62469E841EB37B00000000 /* collection_has_min_size_calculator.cc */, + 8F62469E0FFB16DF00000000 /* collection_has_min_size_calculator.h */, + 8F62469E61F8D8DE00000000 /* detection_projection_calculator.cc */, + 8F62469EA1639D0C00000000 /* detections_to_rects_calculator.cc */, + 8F62469E3087FAEC00000000 /* detections_to_rects_calculator.h */, + 8F62469EBED4CA2400000000 /* detections_to_render_data_calculator.cc */, + 8F62469EA0A3B78B00000000 /* landmark_projection_calculator.cc */, + 8F62469ECCE7F65F00000000 /* landmarks_refinement_calculator.cc */, + 8F62469E3D8600BC00000000 /* landmarks_refinement_calculator.h */, + 8F62469E13423C4400000000 /* landmarks_to_detection_calculator.cc */, + 8F62469EBC1DF28100000000 /* landmarks_to_render_data_calculator.cc */, + 8F62469E7EE2407B00000000 /* landmarks_to_render_data_calculator.h */, + 8F62469E8F068F4700000000 /* local_file_contents_calculator.cc */, + 8F62469E0C5B6D7000000000 /* non_max_suppression_calculator.cc */, + 8F62469E259898F600000000 /* rect_to_render_data_calculator.cc */, + 8F62469E6D2A8B0300000000 /* rect_transformation_calculator.cc */, + 8F62469EBCE7858600000000 /* thresholding_calculator.cc */, + 8F62469E69D807EA00000000 /* to_image_calculator.cc */, ); - name = x; + name = util; + sourceTree = ""; + }; + B6073D51F77EA18700000001 /* util */ = { + isa = PBXGroup; + children = ( + 8F62469EF31678B900000000 /* BUILD */, + 8F62469E1E08E4F200000000 /* annotation_renderer.cc */, + 8F62469EE270DE8600000000 /* annotation_renderer.h */, + 8F62469E53F441A800000000 /* cpu_util.cc */, + 8F62469E1B33088D00000000 /* cpu_util.h */, + 8F62469E3FEF732500000000 /* header_util.cc */, + 8F62469E482738F100000000 /* header_util.h */, + 8F62469E60EAFF9D00000000 /* rectangle_util.cc */, + 8F62469EB21A509200000000 /* rectangle_util.h */, + 8F62469EEC679CE200000000 /* resource_cache.h */, + 8F62469E5D4491B500000000 /* resource_util.cc */, + 8F62469E8EEB36F900000000 /* resource_util.h */, + 8F62469E99A19E9200000000 /* resource_util_apple.cc */, + 8F62469E6E23461400000000 /* resource_util_custom.h */, + 8F62469E758378C800000000 /* resource_util_internal.h */, + B6073D5144FF67A600000001 /* tflite */, + ); + name = util; + sourceTree = ""; + }; + B6073D51F98D880A00000000 /* face_mesh */ = { + isa = PBXGroup; + children = ( + 8F62469EDED8FF2900000000 /* BUILD */, + B6073D510BCCD63300000001 /* calculators */, + B6073D51CAE1C70700000000 /* subgraphs */, + ); + name = face_mesh; + sourceTree = ""; + }; + B6073D51FA77839C00000000 /* face_landmark */ = { + isa = PBXGroup; + children = ( + 8F62469E915B5F1F00000000 /* BUILD */, + 8F62469E438E204A00000000 /* face_landmark_with_attention.tflite */, + ); + name = face_landmark; sourceTree = ""; }; /* End PBXGroup section */ /* Begin PBXLegacyTarget section */ - B0D91B25B052EDC800000000 /* _bazel_clean_ */ = { + 281DB351B67384D000000000 /* _bazel_clean_ */ = { isa = PBXLegacyTarget; buildArgumentsString = "\"/opt/homebrew/Cellar/bazelisk/1.12.0/bin/bazelisk\" \"bazel-bin\""; - buildConfigurationList = FA986D996551CEE700000000 /* Build configuration list for PBXLegacyTarget "_bazel_clean_" */; + buildConfigurationList = D31CF1F5B5CDCA6B00000000 /* Build configuration list for PBXLegacyTarget "_bazel_clean_" */; buildPhases = ( ); buildToolPath = "${PROJECT_FILE_PATH}/.tulsi/Scripts/bazel_clean.sh"; @@ -1600,1770 +1612,1767 @@ /* End PBXLegacyTarget section */ /* Begin PBXNativeTarget section */ - D807E50106BDEB2A00000000 /* _idx_tflite_model_loader_F900857E_ios_min11.0 */ = { + D50916B904A520C200000000 /* _idx_math_661952D5_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = FA986D9950C2A88D00000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_loader_F900857E_ios_min11.0" */; + buildConfigurationList = D31CF1F5E12C3CB500000000 /* Build configuration list for PBXNativeTarget "_idx_math_661952D5_ios_min11.0" */; buildPhases = ( - 20199D1C0000000000000043 /* Sources */, + 3E7AC1A6000000000000000A /* Sources */, ); buildRules = ( ); dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - EC2CE7DA62D4D60D00000000 /* PBXTargetDependency */, + C8719450B67384D100000000 /* PBXTargetDependency */, ); - name = _idx_tflite_model_loader_F900857E_ios_min11.0; - productName = _idx_tflite_model_loader_F900857E_ios_min11.0; - productReference = AED7A97FEB454D0800000000 /* lib_idx_tflite_model_loader_F900857E_ios_min11.0.a */; + name = _idx_math_661952D5_ios_min11.0; + productName = _idx_math_661952D5_ios_min11.0; + productReference = 8F62469E3216363400000000 /* lib_idx_math_661952D5_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - D807E5010700315200000000 /* _idx_begin_loop_calculator_FEDA75EA_ios_min11.0 */ = { + D50916B90A556C3000000000 /* _idx_util_66001351_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = FA986D99322E930900000000 /* Build configuration list for PBXNativeTarget "_idx_begin_loop_calculator_FEDA75EA_ios_min11.0" */; + buildConfigurationList = D31CF1F5073F4E6E00000000 /* Build configuration list for PBXNativeTarget "_idx_util_66001351_ios_min11.0" */; buildPhases = ( - 20199D1C000000000000002C /* Sources */, + 3E7AC1A60000000000000002 /* Sources */, ); buildRules = ( ); dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, + C8719450B67384D100000000 /* PBXTargetDependency */, ); - name = _idx_begin_loop_calculator_FEDA75EA_ios_min11.0; - productName = _idx_begin_loop_calculator_FEDA75EA_ios_min11.0; - productReference = AED7A97F6BBCCA9800000000 /* lib_idx_begin_loop_calculator_FEDA75EA_ios_min11.0.a */; + name = _idx_util_66001351_ios_min11.0; + productName = _idx_util_66001351_ios_min11.0; + productReference = 8F62469EE10D2C8600000000 /* lib_idx_util_66001351_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - D807E5010AA81EC200000000 /* _idx_annotation_renderer_BE836363_ios_min11.0 */ = { + D50916B90B74D91800000000 /* _idx_tflite_model_loader_6F62D289_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = FA986D9985FAB61600000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_renderer_BE836363_ios_min11.0" */; + buildConfigurationList = D31CF1F5915544F700000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_loader_6F62D289_ios_min11.0" */; buildPhases = ( - 20199D1C0000000000000021 /* Sources */, + 3E7AC1A60000000000000043 /* Sources */, ); buildRules = ( ); dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, + C8719450B67384D100000000 /* PBXTargetDependency */, + C87194508C82B9EF00000000 /* PBXTargetDependency */, ); - name = _idx_annotation_renderer_BE836363_ios_min11.0; - productName = _idx_annotation_renderer_BE836363_ios_min11.0; - productReference = AED7A97F56B9E0C600000000 /* lib_idx_annotation_renderer_BE836363_ios_min11.0.a */; + name = _idx_tflite_model_loader_6F62D289_ios_min11.0; + productName = _idx_tflite_model_loader_6F62D289_ios_min11.0; + productReference = 8F62469E10E53D4400000000 /* lib_idx_tflite_model_loader_6F62D289_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - D807E5010C83C67C00000000 /* _idx_ref_gpuimagemath_gpuimageutil_8BF43A5D_ios_min15.5 */ = { + D50916B90BC1B1C600000000 /* _idx_tensors_to_detections_calculator_B4C99DEA_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = FA986D9980BA837500000000 /* Build configuration list for PBXNativeTarget "_idx_ref_gpuimagemath_gpuimageutil_8BF43A5D_ios_min15.5" */; + buildConfigurationList = D31CF1F54DC1F93000000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_detections_calculator_B4C99DEA_ios_min11.0" */; buildPhases = ( - 20199D1C000000000000000E /* Sources */, + 3E7AC1A60000000000000052 /* Sources */, ); buildRules = ( ); dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, + C8719450B67384D100000000 /* PBXTargetDependency */, ); - name = _idx_ref_gpuimagemath_gpuimageutil_8BF43A5D_ios_min15.5; - productName = _idx_ref_gpuimagemath_gpuimageutil_8BF43A5D_ios_min15.5; - productReference = AED7A97F59B674E800000000 /* lib_idx_ref_gpuimagemath_gpuimageutil_8BF43A5D_ios_min15.5.a */; + name = _idx_tensors_to_detections_calculator_B4C99DEA_ios_min11.0; + productName = _idx_tensors_to_detections_calculator_B4C99DEA_ios_min11.0; + productReference = 8F62469E2451D66600000000 /* lib_idx_tensors_to_detections_calculator_B4C99DEA_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - D807E501107AC04000000000 /* _idx_cpu_op_resolver_741B9450_ios_min15.5 */ = { + D50916B90EBED90000000000 /* _idx_core_core-ios_731E135C_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = FA986D994C2C3D9B00000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_op_resolver_741B9450_ios_min15.5" */; + buildConfigurationList = D31CF1F5581D203400000000 /* Build configuration list for PBXNativeTarget "_idx_core_core-ios_731E135C_ios_min11.0" */; buildPhases = ( - 20199D1C0000000000000034 /* Sources */, + 3E7AC1A60000000000000008 /* Sources */, ); buildRules = ( ); dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - EC2CE7DA2EDC5D5B00000000 /* PBXTargetDependency */, - EC2CE7DA28DF669100000000 /* PBXTargetDependency */, - EC2CE7DA2CDA58B700000000 /* PBXTargetDependency */, - EC2CE7DA2CDA58B700000000 /* PBXTargetDependency */, - EC2CE7DA2CDA58B700000000 /* PBXTargetDependency */, - EC2CE7DA2EDC5D5B00000000 /* PBXTargetDependency */, + C8719450B67384D100000000 /* PBXTargetDependency */, + C87194506D62510500000000 /* PBXTargetDependency */, + C87194506D62510500000000 /* PBXTargetDependency */, + C87194506D62510500000000 /* PBXTargetDependency */, + C871945004A520C300000000 /* PBXTargetDependency */, ); - name = _idx_cpu_op_resolver_741B9450_ios_min15.5; - productName = _idx_cpu_op_resolver_741B9450_ios_min15.5; - productReference = AED7A97FD16A91CE00000000 /* lib_idx_cpu_op_resolver_741B9450_ios_min15.5.a */; + name = "_idx_core_core-ios_731E135C_ios_min11.0"; + productName = "_idx_core_core-ios_731E135C_ios_min11.0"; + productReference = 8F62469E89BFDCEA00000000 /* lib_idx_core_core-ios_731E135C_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - D807E501126D7CC600000000 /* _idx_gpu_buffer_storage_gpu_buffer_format_BA46520A_ios_min11.0 */ = { + D50916B91241B0E400000000 /* _idx_inference_calculator_metal_65084AC7_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = FA986D99040548D400000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_gpu_buffer_format_BA46520A_ios_min11.0" */; + buildConfigurationList = D31CF1F5D01558D200000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_metal_65084AC7_ios_min11.0" */; buildPhases = ( - 20199D1C0000000000000006 /* Sources */, + 3E7AC1A60000000000000048 /* Sources */, ); buildRules = ( ); dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, + C8719450B67384D100000000 /* PBXTargetDependency */, + C87194507E562BDF00000000 /* PBXTargetDependency */, + C871945014B7442B00000000 /* PBXTargetDependency */, + C8719450FB58229B00000000 /* PBXTargetDependency */, + C8719450CB8F507D00000000 /* PBXTargetDependency */, + C87194504C962DED00000000 /* PBXTargetDependency */, ); - name = _idx_gpu_buffer_storage_gpu_buffer_format_BA46520A_ios_min11.0; - productName = _idx_gpu_buffer_storage_gpu_buffer_format_BA46520A_ios_min11.0; - productReference = AED7A97F21F0D81000000000 /* lib_idx_gpu_buffer_storage_gpu_buffer_format_BA46520A_ios_min11.0.a */; + name = _idx_inference_calculator_metal_65084AC7_ios_min11.0; + productName = _idx_inference_calculator_metal_65084AC7_ios_min11.0; + productReference = 8F62469ED92E9DBA00000000 /* lib_idx_inference_calculator_metal_65084AC7_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - D807E50112A6202400000000 /* _idx_MPPMetalUtil_E63D8158_ios_min15.5 */ = { + D50916B914B7442A00000000 /* _idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = FA986D99A5D46CA400000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalUtil_E63D8158_ios_min15.5" */; + buildConfigurationList = D31CF1F50931EF1C00000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min11.0" */; buildPhases = ( - 20199D1C000000000000001D /* Sources */, + 3E7AC1A60000000000000042 /* Sources */, ); buildRules = ( ); dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - EC2CE7DA4843522D00000000 /* PBXTargetDependency */, + C8719450B67384D100000000 /* PBXTargetDependency */, + C87194500B74D91900000000 /* PBXTargetDependency */, + C8719450BCE0083900000000 /* PBXTargetDependency */, ); - name = _idx_MPPMetalUtil_E63D8158_ios_min15.5; - productName = _idx_MPPMetalUtil_E63D8158_ios_min15.5; - productReference = AED7A97FB4326CBC00000000 /* lib_idx_MPPMetalUtil_E63D8158_ios_min15.5.a */; + name = _idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min11.0; + productName = _idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min11.0; + productReference = 8F62469EEB12474400000000 /* lib_idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - D807E50113B9FA2E00000000 /* _idx_tflite_custom_op_resolver_calculator_042597A8_ios_min15.5 */ = { + D50916B916C7A06E00000000 /* _idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = FA986D99FF0D22E400000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_custom_op_resolver_calculator_042597A8_ios_min15.5" */; + buildConfigurationList = D31CF1F57996204C00000000 /* Build configuration list for PBXNativeTarget "_idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min11.0" */; buildPhases = ( - 20199D1C0000000000000057 /* Sources */, + 3E7AC1A6000000000000003C /* Sources */, ); buildRules = ( ); dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - EC2CE7DA107AC04100000000 /* PBXTargetDependency */, - EC2CE7DA5EC7447B00000000 /* PBXTargetDependency */, + C8719450B67384D100000000 /* PBXTargetDependency */, ); - name = _idx_tflite_custom_op_resolver_calculator_042597A8_ios_min15.5; - productName = _idx_tflite_custom_op_resolver_calculator_042597A8_ios_min15.5; - productReference = AED7A97FCCF9B5CC00000000 /* lib_idx_tflite_custom_op_resolver_calculator_042597A8_ios_min15.5.a */; + name = _idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min11.0; + productName = _idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min11.0; + productReference = 8F62469E3FBDA1BA00000000 /* lib_idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - D807E5011780241600000000 /* _idx_begin_loop_calculator_FEDA75EA_ios_min15.5 */ = { + D50916B917CF694E00000000 /* _idx_image_properties_calculator_gpu_service_941BB6CA_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = FA986D99BE7CD17800000000 /* Build configuration list for PBXNativeTarget "_idx_begin_loop_calculator_FEDA75EA_ios_min15.5" */; + buildConfigurationList = D31CF1F53F42AD4900000000 /* Build configuration list for PBXNativeTarget "_idx_image_properties_calculator_gpu_service_941BB6CA_ios_min15.5" */; buildPhases = ( - 20199D1C000000000000002D /* Sources */, + 3E7AC1A60000000000000029 /* Sources */, ); buildRules = ( ); dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, + C8719450B67384D100000000 /* PBXTargetDependency */, + C8719450C4F8B64100000000 /* PBXTargetDependency */, ); - name = _idx_begin_loop_calculator_FEDA75EA_ios_min15.5; - productName = _idx_begin_loop_calculator_FEDA75EA_ios_min15.5; - productReference = AED7A97F004AA53400000000 /* lib_idx_begin_loop_calculator_FEDA75EA_ios_min15.5.a */; + name = _idx_image_properties_calculator_gpu_service_941BB6CA_ios_min15.5; + productName = _idx_image_properties_calculator_gpu_service_941BB6CA_ios_min15.5; + productReference = 8F62469E9A67603600000000 /* lib_idx_image_properties_calculator_gpu_service_941BB6CA_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - D807E501181DA32A00000000 /* _idx_clip_vector_size_calculator_02FA2733_ios_min11.0 */ = { + D50916B91918237600000000 /* _idx_gl_simple_shaders_2CB9CEAD_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = FA986D9959E8B5A300000000 /* Build configuration list for PBXNativeTarget "_idx_clip_vector_size_calculator_02FA2733_ios_min11.0" */; + buildConfigurationList = D31CF1F5F0E99D4C00000000 /* Build configuration list for PBXNativeTarget "_idx_gl_simple_shaders_2CB9CEAD_ios_min15.5" */; buildPhases = ( - 20199D1C000000000000002E /* Sources */, + 3E7AC1A60000000000000027 /* Sources */, ); buildRules = ( ); dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, + C8719450B67384D100000000 /* PBXTargetDependency */, ); - name = _idx_clip_vector_size_calculator_02FA2733_ios_min11.0; - productName = _idx_clip_vector_size_calculator_02FA2733_ios_min11.0; - productReference = AED7A97FC87753C600000000 /* lib_idx_clip_vector_size_calculator_02FA2733_ios_min11.0.a */; + name = _idx_gl_simple_shaders_2CB9CEAD_ios_min15.5; + productName = _idx_gl_simple_shaders_2CB9CEAD_ios_min15.5; + productReference = 8F62469EC9964E7600000000 /* lib_idx_gl_simple_shaders_2CB9CEAD_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - D807E5011BBEB05200000000 /* _idx_non_max_suppression_calculator_EA803631_ios_min15.5 */ = { + D50916B91AFB53CA00000000 /* _idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = FA986D997AA3FFA400000000 /* Build configuration list for PBXNativeTarget "_idx_non_max_suppression_calculator_EA803631_ios_min15.5" */; + buildConfigurationList = D31CF1F51CCE08FA00000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min15.5" */; buildPhases = ( - 20199D1C000000000000004B /* Sources */, + 3E7AC1A60000000000000012 /* Sources */, ); buildRules = ( ); dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, + C8719450B67384D100000000 /* PBXTargetDependency */, + C8719450C4F8B64100000000 /* PBXTargetDependency */, + C871945092DAA70B00000000 /* PBXTargetDependency */, + C8719450395CFE5100000000 /* PBXTargetDependency */, + C8719450507BECC700000000 /* PBXTargetDependency */, ); - name = _idx_non_max_suppression_calculator_EA803631_ios_min15.5; - productName = _idx_non_max_suppression_calculator_EA803631_ios_min15.5; - productReference = AED7A97F2BFD778400000000 /* lib_idx_non_max_suppression_calculator_EA803631_ios_min15.5.a */; + name = _idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min15.5; + productName = _idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min15.5; + productReference = 8F62469E2503320C00000000 /* lib_idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - D807E50123AC318600000000 /* _idx_tensors_to_detections_calculator_888E512F_ios_min15.5 */ = { + D50916B91B5AB1A200000000 /* _idx_image_to_tensor_calculator_77E4634D_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = FA986D9939A3575700000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_detections_calculator_888E512F_ios_min15.5" */; + buildConfigurationList = D31CF1F540FA78C200000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_calculator_77E4634D_ios_min11.0" */; buildPhases = ( - 20199D1C0000000000000053 /* Sources */, + 3E7AC1A6000000000000003A /* Sources */, ); buildRules = ( ); dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, + C8719450B67384D100000000 /* PBXTargetDependency */, + C8719450DCA2423700000000 /* PBXTargetDependency */, + C871945016C7A06F00000000 /* PBXTargetDependency */, ); - name = _idx_tensors_to_detections_calculator_888E512F_ios_min15.5; - productName = _idx_tensors_to_detections_calculator_888E512F_ios_min15.5; - productReference = AED7A97F43CED18C00000000 /* lib_idx_tensors_to_detections_calculator_888E512F_ios_min15.5.a */; + name = _idx_image_to_tensor_calculator_77E4634D_ios_min11.0; + productName = _idx_image_to_tensor_calculator_77E4634D_ios_min11.0; + productReference = 8F62469E49E053D400000000 /* lib_idx_image_to_tensor_calculator_77E4634D_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - D807E50125AB3D8C00000000 /* _idx_image_to_tensor_converter_metal_9AA64D0A_ios_min11.0 */ = { + D50916B91B6277A200000000 /* _idx_image_to_tensor_calculator_77E4634D_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = FA986D99F5AFBACB00000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_metal_9AA64D0A_ios_min11.0" */; + buildConfigurationList = D31CF1F5AFE1395B00000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_calculator_77E4634D_ios_min15.5" */; buildPhases = ( - 20199D1C0000000000000040 /* Sources */, + 3E7AC1A6000000000000003D /* Sources */, ); buildRules = ( ); dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - EC2CE7DAF727D6E300000000 /* PBXTargetDependency */, - EC2CE7DA126D7CC700000000 /* PBXTargetDependency */, - EC2CE7DAF70D126B00000000 /* PBXTargetDependency */, + C8719450B67384D100000000 /* PBXTargetDependency */, + C8719450B784310700000000 /* PBXTargetDependency */, + C87194505D80A99B00000000 /* PBXTargetDependency */, ); - name = _idx_image_to_tensor_converter_metal_9AA64D0A_ios_min11.0; - productName = _idx_image_to_tensor_converter_metal_9AA64D0A_ios_min11.0; - productReference = AED7A97F1F27769C00000000 /* lib_idx_image_to_tensor_converter_metal_9AA64D0A_ios_min11.0.a */; + name = _idx_image_to_tensor_calculator_77E4634D_ios_min15.5; + productName = _idx_image_to_tensor_calculator_77E4634D_ios_min15.5; + productReference = 8F62469E68ACC6AC00000000 /* lib_idx_image_to_tensor_calculator_77E4634D_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - D807E50125CEBB5E00000000 /* _idx_MPPMetalUtil_E63D8158_ios_min11.0 */ = { + D50916B925AA7A6000000000 /* _idx_begin_loop_calculator_55C0335F_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = FA986D990EB0070600000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalUtil_E63D8158_ios_min11.0" */; + buildConfigurationList = D31CF1F5B8217D6500000000 /* Build configuration list for PBXNativeTarget "_idx_begin_loop_calculator_55C0335F_ios_min15.5" */; buildPhases = ( - 20199D1C000000000000001C /* Sources */, + 3E7AC1A6000000000000002D /* Sources */, ); buildRules = ( ); dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - EC2CE7DABBDDDAB900000000 /* PBXTargetDependency */, + C8719450B67384D100000000 /* PBXTargetDependency */, ); - name = _idx_MPPMetalUtil_E63D8158_ios_min11.0; - productName = _idx_MPPMetalUtil_E63D8158_ios_min11.0; - productReference = AED7A97FA4F093DE00000000 /* lib_idx_MPPMetalUtil_E63D8158_ios_min11.0.a */; + name = _idx_begin_loop_calculator_55C0335F_ios_min15.5; + productName = _idx_begin_loop_calculator_55C0335F_ios_min15.5; + productReference = 8F62469E43C533AA00000000 /* lib_idx_begin_loop_calculator_55C0335F_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - D807E50128DF669000000000 /* _idx_transpose_conv_bias_207EFBC1_ios_min15.5 */ = { + D50916B92FCF8C3E00000000 /* _idx_cpu_util_D57AACFF_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = FA986D9992B2D59900000000 /* Build configuration list for PBXNativeTarget "_idx_transpose_conv_bias_207EFBC1_ios_min15.5" */; + buildConfigurationList = D31CF1F53C8EC2F100000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_util_D57AACFF_ios_min15.5" */; buildPhases = ( - 20199D1C0000000000000036 /* Sources */, + 3E7AC1A6000000000000000D /* Sources */, ); buildRules = ( ); dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, + C8719450B67384D100000000 /* PBXTargetDependency */, ); - name = _idx_transpose_conv_bias_207EFBC1_ios_min15.5; - productName = _idx_transpose_conv_bias_207EFBC1_ios_min15.5; - productReference = AED7A97FF83CF85400000000 /* lib_idx_transpose_conv_bias_207EFBC1_ios_min15.5.a */; + name = _idx_cpu_util_D57AACFF_ios_min15.5; + productName = _idx_cpu_util_D57AACFF_ios_min15.5; + productReference = 8F62469E808D9C3C00000000 /* lib_idx_cpu_util_D57AACFF_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - D807E5012B54506200000000 /* _idx_math_3043B97F_ios_min11.0 */ = { + D50916B932A4BF4A00000000 /* _idx_cpu_op_resolver_E63A3714_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = FA986D9968A23B8500000000 /* Build configuration list for PBXNativeTarget "_idx_math_3043B97F_ios_min11.0" */; + buildConfigurationList = D31CF1F50421972E00000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_op_resolver_E63A3714_ios_min11.0" */; buildPhases = ( - 20199D1C000000000000000A /* Sources */, + 3E7AC1A60000000000000030 /* Sources */, ); buildRules = ( ); dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, + C8719450B67384D100000000 /* PBXTargetDependency */, + C8719450F5035E2500000000 /* PBXTargetDependency */, + C871945052EE187D00000000 /* PBXTargetDependency */, + C8719450F5035E2500000000 /* PBXTargetDependency */, + C8719450C415A01D00000000 /* PBXTargetDependency */, + C8719450C415A01D00000000 /* PBXTargetDependency */, + C8719450F5035E2500000000 /* PBXTargetDependency */, ); - name = _idx_math_3043B97F_ios_min11.0; - productName = _idx_math_3043B97F_ios_min11.0; - productReference = AED7A97FAD93CF9C00000000 /* lib_idx_math_3043B97F_ios_min11.0.a */; + name = _idx_cpu_op_resolver_E63A3714_ios_min11.0; + productName = _idx_cpu_op_resolver_E63A3714_ios_min11.0; + productReference = 8F62469E029424C000000000 /* lib_idx_cpu_op_resolver_E63A3714_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - D807E5012CDA58B600000000 /* _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_AB0D0716_ios_min15.5 */ = { + D50916B932AD902000000000 /* _idx_cpu_op_resolver_E63A3714_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = FA986D996B754CB900000000 /* Build configuration list for PBXNativeTarget "_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_AB0D0716_ios_min15.5" */; + buildConfigurationList = D31CF1F52BE3F25400000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_op_resolver_E63A3714_ios_min15.5" */; buildPhases = ( - 20199D1C0000000000000037 /* Sources */, + 3E7AC1A60000000000000034 /* Sources */, ); buildRules = ( ); dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, + C8719450B67384D100000000 /* PBXTargetDependency */, + C8719450D320929F00000000 /* PBXTargetDependency */, + C871945095D3064100000000 /* PBXTargetDependency */, + C8719450600148FB00000000 /* PBXTargetDependency */, + C8719450D320929F00000000 /* PBXTargetDependency */, + C871945095D3064100000000 /* PBXTargetDependency */, + C871945095D3064100000000 /* PBXTargetDependency */, ); - name = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_AB0D0716_ios_min15.5; - productName = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_AB0D0716_ios_min15.5; - productReference = AED7A97F4231667400000000 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_AB0D0716_ios_min15.5.a */; + name = _idx_cpu_op_resolver_E63A3714_ios_min15.5; + productName = _idx_cpu_op_resolver_E63A3714_ios_min15.5; + productReference = 8F62469E85ED468800000000 /* lib_idx_cpu_op_resolver_E63A3714_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - D807E5012EDC5D5A00000000 /* _idx_max_unpooling_max_pool_argmax_92E156D6_ios_min15.5 */ = { + D50916B9395CFE5000000000 /* _idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = FA986D99A93DAF1A00000000 /* Build configuration list for PBXNativeTarget "_idx_max_unpooling_max_pool_argmax_92E156D6_ios_min15.5" */; + buildConfigurationList = D31CF1F57A35429E00000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min15.5" */; buildPhases = ( - 20199D1C0000000000000035 /* Sources */, + 3E7AC1A60000000000000011 /* Sources */, ); buildRules = ( ); dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, + C8719450B67384D100000000 /* PBXTargetDependency */, ); - name = _idx_max_unpooling_max_pool_argmax_92E156D6_ios_min15.5; - productName = _idx_max_unpooling_max_pool_argmax_92E156D6_ios_min15.5; - productReference = AED7A97F10B91A6400000000 /* lib_idx_max_unpooling_max_pool_argmax_92E156D6_ios_min15.5.a */; + name = _idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min15.5; + productName = _idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min15.5; + productReference = 8F62469E98313BAC00000000 /* lib_idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - D807E50133E4A23C00000000 /* _idx_cpu_op_resolver_741B9450_ios_min11.0 */ = { + D50916B939FF367E00000000 /* _idx_gl_calculator_helper_6AE62265_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = FA986D99174D441D00000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_op_resolver_741B9450_ios_min11.0" */; + buildConfigurationList = D31CF1F5294E870200000000 /* Build configuration list for PBXNativeTarget "_idx_gl_calculator_helper_6AE62265_ios_min11.0" */; buildPhases = ( - 20199D1C0000000000000030 /* Sources */, + 3E7AC1A60000000000000023 /* Sources */, ); buildRules = ( ); dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - EC2CE7DAC7D8DFDF00000000 /* PBXTargetDependency */, - EC2CE7DA4EABA32900000000 /* PBXTargetDependency */, - EC2CE7DAC7D8DFDF00000000 /* PBXTargetDependency */, - EC2CE7DA4EABA32900000000 /* PBXTargetDependency */, - EC2CE7DA4EABA32900000000 /* PBXTargetDependency */, - EC2CE7DA46D4E80900000000 /* PBXTargetDependency */, + C8719450B67384D100000000 /* PBXTargetDependency */, + C8719450BAB5C57F00000000 /* PBXTargetDependency */, + C87194509D198C3700000000 /* PBXTargetDependency */, + C8719450EEDCEF1900000000 /* PBXTargetDependency */, + C8719450CB8F507D00000000 /* PBXTargetDependency */, + C871945060D0021D00000000 /* PBXTargetDependency */, + C8719450CB8F507D00000000 /* PBXTargetDependency */, + C871945060D0021D00000000 /* PBXTargetDependency */, ); - name = _idx_cpu_op_resolver_741B9450_ios_min11.0; - productName = _idx_cpu_op_resolver_741B9450_ios_min11.0; - productReference = AED7A97F36C8B0C800000000 /* lib_idx_cpu_op_resolver_741B9450_ios_min11.0.a */; + name = _idx_gl_calculator_helper_6AE62265_ios_min11.0; + productName = _idx_gl_calculator_helper_6AE62265_ios_min11.0; + productReference = 8F62469E75DC94FA00000000 /* lib_idx_gl_calculator_helper_6AE62265_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - D807E50134002EA400000000 /* _idx_tflite_model_calculator_end_loop_calculator_6A228ACC_ios_min15.5 */ = { + D50916B93C22A8D400000000 /* _idx_split_vector_calculator_73890910_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = FA986D992E6D2D6000000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_calculator_end_loop_calculator_6A228ACC_ios_min15.5" */; + buildConfigurationList = D31CF1F5842E851000000000 /* Build configuration list for PBXNativeTarget "_idx_split_vector_calculator_73890910_ios_min11.0" */; buildPhases = ( - 20199D1C0000000000000059 /* Sources */, + 3E7AC1A60000000000000050 /* Sources */, ); buildRules = ( ); dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, + C8719450B67384D100000000 /* PBXTargetDependency */, + C87194508C82B9EF00000000 /* PBXTargetDependency */, ); - name = _idx_tflite_model_calculator_end_loop_calculator_6A228ACC_ios_min15.5; - productName = _idx_tflite_model_calculator_end_loop_calculator_6A228ACC_ios_min15.5; - productReference = AED7A97FB98F90AE00000000 /* lib_idx_tflite_model_calculator_end_loop_calculator_6A228ACC_ios_min15.5.a */; + name = _idx_split_vector_calculator_73890910_ios_min11.0; + productName = _idx_split_vector_calculator_73890910_ios_min11.0; + productReference = 8F62469EF3D7B8CE00000000 /* lib_idx_split_vector_calculator_73890910_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - D807E5013476F00000000000 /* _idx_clip_vector_size_calculator_02FA2733_ios_min15.5 */ = { + D50916B93DC5F44400000000 /* _idx_annotation_overlay_calculator_7772C341_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = FA986D991DE7AFEB00000000 /* Build configuration list for PBXNativeTarget "_idx_clip_vector_size_calculator_02FA2733_ios_min15.5" */; + buildConfigurationList = D31CF1F5C895ABFC00000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_overlay_calculator_7772C341_ios_min11.0" */; buildPhases = ( - 20199D1C000000000000002F /* Sources */, + 3E7AC1A60000000000000020 /* Sources */, ); buildRules = ( ); dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, + C8719450B67384D100000000 /* PBXTargetDependency */, + C8719450ACE90FE300000000 /* PBXTargetDependency */, + C871945095AF928500000000 /* PBXTargetDependency */, + C871945039FF367F00000000 /* PBXTargetDependency */, + C8719450EEDCEF1900000000 /* PBXTargetDependency */, + C8719450CB8F507D00000000 /* PBXTargetDependency */, ); - name = _idx_clip_vector_size_calculator_02FA2733_ios_min15.5; - productName = _idx_clip_vector_size_calculator_02FA2733_ios_min15.5; - productReference = AED7A97F6953E68600000000 /* lib_idx_clip_vector_size_calculator_02FA2733_ios_min15.5.a */; + name = _idx_annotation_overlay_calculator_7772C341_ios_min11.0; + productName = _idx_annotation_overlay_calculator_7772C341_ios_min11.0; + productReference = 8F62469EDF9B2B7600000000 /* lib_idx_annotation_overlay_calculator_7772C341_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - D807E50137FF534E00000000 /* _idx_image_properties_calculator_gpu_service_6BF370A2_ios_min11.0 */ = { + D50916B940C1AF2200000000 /* OlaFaceUnityFramework */ = { isa = PBXNativeTarget; - buildConfigurationList = FA986D99DA31051A00000000 /* Build configuration list for PBXNativeTarget "_idx_image_properties_calculator_gpu_service_6BF370A2_ios_min11.0" */; + buildConfigurationList = D31CF1F5F71DCC4600000000 /* Build configuration list for PBXNativeTarget "OlaFaceUnityFramework" */; buildPhases = ( - 20199D1C0000000000000024 /* Sources */, + 6FB445172B7B339300000000 /* build //mediapipe/render/module/beauty/ios:OlaFaceUnityFramework */, ); buildRules = ( ); dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - EC2CE7DAFE323FCF00000000 /* PBXTargetDependency */, - ); - name = _idx_image_properties_calculator_gpu_service_6BF370A2_ios_min11.0; - productName = _idx_image_properties_calculator_gpu_service_6BF370A2_ios_min11.0; - productReference = AED7A97F76AD183E00000000 /* lib_idx_image_properties_calculator_gpu_service_6BF370A2_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E5013C33B88E00000000 /* _idx_op_resolver_E390FDC7_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D992FECBD2900000000 /* Build configuration list for PBXNativeTarget "_idx_op_resolver_E390FDC7_ios_min11.0" */; - buildPhases = ( - 20199D1C000000000000004C /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - ); - name = _idx_op_resolver_E390FDC7_ios_min11.0; - productName = _idx_op_resolver_E390FDC7_ios_min11.0; - productReference = AED7A97F0D37EB1400000000 /* lib_idx_op_resolver_E390FDC7_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E5013F591E2E00000000 /* _idx_MPPGraphGPUData_733A9D5A_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D994805BBB500000000 /* Build configuration list for PBXNativeTarget "_idx_MPPGraphGPUData_733A9D5A_ios_min15.5" */; - buildPhases = ( - 20199D1C0000000000000017 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - EC2CE7DABE53424B00000000 /* PBXTargetDependency */, - EC2CE7DABE53424B00000000 /* PBXTargetDependency */, - ); - name = _idx_MPPGraphGPUData_733A9D5A_ios_min15.5; - productName = _idx_MPPGraphGPUData_733A9D5A_ios_min15.5; - productReference = AED7A97FC4F2652200000000 /* lib_idx_MPPGraphGPUData_733A9D5A_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E5014594765800000000 /* _idx_gpu_buffer_storage_gpu_buffer_format_BA46520A_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D9951CA8D0300000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_gpu_buffer_format_BA46520A_ios_min15.5" */; - buildPhases = ( - 20199D1C0000000000000013 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - ); - name = _idx_gpu_buffer_storage_gpu_buffer_format_BA46520A_ios_min15.5; - productName = _idx_gpu_buffer_storage_gpu_buffer_format_BA46520A_ios_min15.5; - productReference = AED7A97FF5DC96EC00000000 /* lib_idx_gpu_buffer_storage_gpu_buffer_format_BA46520A_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E50145A4DD6400000000 /* _idx_image_to_tensor_converter_opencv_F40C896E_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D996039A2BE00000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_opencv_F40C896E_ios_min11.0" */; - buildPhases = ( - 20199D1C000000000000003B /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - EC2CE7DAF727D6E300000000 /* PBXTargetDependency */, - ); - name = _idx_image_to_tensor_converter_opencv_F40C896E_ios_min11.0; - productName = _idx_image_to_tensor_converter_opencv_F40C896E_ios_min11.0; - productReference = AED7A97FA7048F5200000000 /* lib_idx_image_to_tensor_converter_opencv_F40C896E_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E501462EFBA200000000 /* _idx_cpu_util_B64315B8_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D992819742700000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_util_B64315B8_ios_min11.0" */; - buildPhases = ( - 20199D1C0000000000000004 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - ); - name = _idx_cpu_util_B64315B8_ios_min11.0; - productName = _idx_cpu_util_B64315B8_ios_min11.0; - productReference = AED7A97FB9BC893200000000 /* lib_idx_cpu_util_B64315B8_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E50146D4E80800000000 /* _idx_transpose_conv_bias_207EFBC1_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D99FD0A1C6D00000000 /* Build configuration list for PBXNativeTarget "_idx_transpose_conv_bias_207EFBC1_ios_min11.0" */; - buildPhases = ( - 20199D1C0000000000000033 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - ); - name = _idx_transpose_conv_bias_207EFBC1_ios_min11.0; - productName = _idx_transpose_conv_bias_207EFBC1_ios_min11.0; - productReference = AED7A97F5C1FBB0A00000000 /* lib_idx_transpose_conv_bias_207EFBC1_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E5014843522C00000000 /* _idx_mediapipe_framework_ios_E5983FAB_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D9963E757BC00000000 /* Build configuration list for PBXNativeTarget "_idx_mediapipe_framework_ios_E5983FAB_ios_min15.5" */; - buildPhases = ( - 20199D1C000000000000001B /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - EC2CE7DA84D8D44100000000 /* PBXTargetDependency */, - EC2CE7DAD40A970700000000 /* PBXTargetDependency */, - EC2CE7DA3F591E2F00000000 /* PBXTargetDependency */, - EC2CE7DAF8F8F01D00000000 /* PBXTargetDependency */, - EC2CE7DA60A115C900000000 /* PBXTargetDependency */, - ); - name = _idx_mediapipe_framework_ios_E5983FAB_ios_min15.5; - productName = _idx_mediapipe_framework_ios_E5983FAB_ios_min15.5; - productReference = AED7A97F3D487D7600000000 /* lib_idx_mediapipe_framework_ios_E5983FAB_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E5014BACA9B800000000 /* _idx_detection_projection_calculator_9B95E740_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D99D29FC5F000000000 /* Build configuration list for PBXNativeTarget "_idx_detection_projection_calculator_9B95E740_ios_min15.5" */; - buildPhases = ( - 20199D1C0000000000000039 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - ); - name = _idx_detection_projection_calculator_9B95E740_ios_min15.5; - productName = _idx_detection_projection_calculator_9B95E740_ios_min15.5; - productReference = AED7A97FDA1E3CA600000000 /* lib_idx_detection_projection_calculator_9B95E740_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E5014C0DA67000000000 /* _idx_MPPMetalHelper_7397E6A5_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D9952E49A5D00000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalHelper_7397E6A5_ios_min15.5" */; - buildPhases = ( - 20199D1C000000000000001A /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - EC2CE7DA4843522D00000000 /* PBXTargetDependency */, - ); - name = _idx_MPPMetalHelper_7397E6A5_ios_min15.5; - productName = _idx_MPPMetalHelper_7397E6A5_ios_min15.5; - productReference = AED7A97F8D8FA5E400000000 /* lib_idx_MPPMetalHelper_7397E6A5_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E5014EABA32800000000 /* _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_AB0D0716_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D9939D12DEE00000000 /* Build configuration list for PBXNativeTarget "_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_AB0D0716_ios_min11.0" */; - buildPhases = ( - 20199D1C0000000000000032 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - ); - name = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_AB0D0716_ios_min11.0; - productName = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_AB0D0716_ios_min11.0; - productReference = AED7A97F99018DD600000000 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_AB0D0716_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E5014EF47AD000000000 /* _idx_util_28409609_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D99EB68CF0F00000000 /* Build configuration list for PBXNativeTarget "_idx_util_28409609_ios_min11.0" */; - buildPhases = ( - 20199D1C0000000000000002 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - ); - name = _idx_util_28409609_ios_min11.0; - productName = _idx_util_28409609_ios_min11.0; - productReference = AED7A97F2783FF8600000000 /* lib_idx_util_28409609_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E50153AD96EA00000000 /* _idx_split_vector_calculator_6654799A_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D99345E966300000000 /* Build configuration list for PBXNativeTarget "_idx_split_vector_calculator_6654799A_ios_min15.5" */; - buildPhases = ( - 20199D1C0000000000000051 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - EC2CE7DAD05A039B00000000 /* PBXTargetDependency */, - ); - name = _idx_split_vector_calculator_6654799A_ios_min15.5; - productName = _idx_split_vector_calculator_6654799A_ios_min15.5; - productReference = AED7A97FC0E755D400000000 /* lib_idx_split_vector_calculator_6654799A_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E5015AF9572600000000 /* _idx_tflite_custom_op_resolver_calculator_042597A8_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D9981E502F700000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_custom_op_resolver_calculator_042597A8_ios_min11.0" */; - buildPhases = ( - 20199D1C0000000000000056 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - EC2CE7DA33E4A23D00000000 /* PBXTargetDependency */, - EC2CE7DA3C33B88F00000000 /* PBXTargetDependency */, - ); - name = _idx_tflite_custom_op_resolver_calculator_042597A8_ios_min11.0; - productName = _idx_tflite_custom_op_resolver_calculator_042597A8_ios_min11.0; - productReference = AED7A97FBB00542E00000000 /* lib_idx_tflite_custom_op_resolver_calculator_042597A8_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E5015C0B74AE00000000 /* _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_7ED8D1B5_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D9997443EAB00000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_7ED8D1B5_ios_min15.5" */; - buildPhases = ( - 20199D1C0000000000000055 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - ); - name = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_7ED8D1B5_ios_min15.5; - productName = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_7ED8D1B5_ios_min15.5; - productReference = AED7A97F0556389200000000 /* lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_7ED8D1B5_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E5015DAF3A1600000000 /* _idx_OlaFaceUnityLibrary_5CE49B93_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D992024523300000000 /* Build configuration list for PBXNativeTarget "_idx_OlaFaceUnityLibrary_5CE49B93_ios_min15.5" */; - buildPhases = ( - 20199D1C000000000000001F /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - EC2CE7DAF57C17F100000000 /* PBXTargetDependency */, - EC2CE7DA71C7DBE500000000 /* PBXTargetDependency */, - ); - name = _idx_OlaFaceUnityLibrary_5CE49B93_ios_min15.5; - productName = _idx_OlaFaceUnityLibrary_5CE49B93_ios_min15.5; - productReference = AED7A97FE2F8115C00000000 /* lib_idx_OlaFaceUnityLibrary_5CE49B93_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E5015EC7447A00000000 /* _idx_op_resolver_E390FDC7_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D99D9ED7AAD00000000 /* Build configuration list for PBXNativeTarget "_idx_op_resolver_E390FDC7_ios_min15.5" */; - buildPhases = ( - 20199D1C000000000000004D /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - ); - name = _idx_op_resolver_E390FDC7_ios_min15.5; - productName = _idx_op_resolver_E390FDC7_ios_min15.5; - productReference = AED7A97F7EECC88600000000 /* lib_idx_op_resolver_E390FDC7_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E5015F25395000000000 /* _idx_previous_loopback_calculator_header_util_D9AEB78A_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D99572B977600000000 /* Build configuration list for PBXNativeTarget "_idx_previous_loopback_calculator_header_util_D9AEB78A_ios_min11.0" */; - buildPhases = ( - 20199D1C000000000000004E /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - ); - name = _idx_previous_loopback_calculator_header_util_D9AEB78A_ios_min11.0; - productName = _idx_previous_loopback_calculator_header_util_D9AEB78A_ios_min11.0; - productReference = AED7A97F1D11BD0C00000000 /* lib_idx_previous_loopback_calculator_header_util_D9AEB78A_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E5015F558F1C00000000 /* _idx_image_to_tensor_converter_opencv_F40C896E_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D999444475C00000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_opencv_F40C896E_ios_min15.5" */; - buildPhases = ( - 20199D1C000000000000003F /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - EC2CE7DA98631CBF00000000 /* PBXTargetDependency */, - ); - name = _idx_image_to_tensor_converter_opencv_F40C896E_ios_min15.5; - productName = _idx_image_to_tensor_converter_opencv_F40C896E_ios_min15.5; - productReference = AED7A97FAF93AF3000000000 /* lib_idx_image_to_tensor_converter_opencv_F40C896E_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E50160A115C800000000 /* _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_26C42D3D_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D991C65D8AE00000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_26C42D3D_ios_min15.5" */; - buildPhases = ( - 20199D1C0000000000000012 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - EC2CE7DA4594765900000000 /* PBXTargetDependency */, - EC2CE7DAF8F8F01D00000000 /* PBXTargetDependency */, - EC2CE7DA4594765900000000 /* PBXTargetDependency */, - EC2CE7DABE53424B00000000 /* PBXTargetDependency */, - ); - name = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_26C42D3D_ios_min15.5; - productName = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_26C42D3D_ios_min15.5; - productReference = AED7A97F4E8A433800000000 /* lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_26C42D3D_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E50162D4D60C00000000 /* _idx_resource_util_B6FA1F0B_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D990778FA5200000000 /* Build configuration list for PBXNativeTarget "_idx_resource_util_B6FA1F0B_ios_min11.0" */; - buildPhases = ( - 20199D1C0000000000000044 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - ); - name = _idx_resource_util_B6FA1F0B_ios_min11.0; - productName = _idx_resource_util_B6FA1F0B_ios_min11.0; - productReference = AED7A97F6D305F1600000000 /* lib_idx_resource_util_B6FA1F0B_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E5016335695200000000 /* _idx_OlaFaceUnityLibrary_5CE49B93_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D9925C9ED4000000000 /* Build configuration list for PBXNativeTarget "_idx_OlaFaceUnityLibrary_5CE49B93_ios_min11.0" */; - buildPhases = ( - 20199D1C000000000000001E /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - EC2CE7DA7073403D00000000 /* PBXTargetDependency */, - EC2CE7DA6B67FEED00000000 /* PBXTargetDependency */, - ); - name = _idx_OlaFaceUnityLibrary_5CE49B93_ios_min11.0; - productName = _idx_OlaFaceUnityLibrary_5CE49B93_ios_min11.0; - productReference = AED7A97F79E3E67800000000 /* lib_idx_OlaFaceUnityLibrary_5CE49B93_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E501652D07FE00000000 /* _idx_previous_loopback_calculator_header_util_D9AEB78A_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D99A8D18AAC00000000 /* Build configuration list for PBXNativeTarget "_idx_previous_loopback_calculator_header_util_D9AEB78A_ios_min15.5" */; - buildPhases = ( - 20199D1C000000000000004F /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - ); - name = _idx_previous_loopback_calculator_header_util_D9AEB78A_ios_min15.5; - productName = _idx_previous_loopback_calculator_header_util_D9AEB78A_ios_min15.5; - productReference = AED7A97FFF2AB57800000000 /* lib_idx_previous_loopback_calculator_header_util_D9AEB78A_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E50165CC282600000000 /* _idx_annotation_overlay_calculator_7B50CB48_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D998657695200000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_overlay_calculator_7B50CB48_ios_min15.5" */; - buildPhases = ( - 20199D1C0000000000000026 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - EC2CE7DA60A115C900000000 /* PBXTargetDependency */, - EC2CE7DABFC8082300000000 /* PBXTargetDependency */, - EC2CE7DA76D9570300000000 /* PBXTargetDependency */, - EC2CE7DAD9E967BF00000000 /* PBXTargetDependency */, - EC2CE7DA98D05C4B00000000 /* PBXTargetDependency */, - ); - name = _idx_annotation_overlay_calculator_7B50CB48_ios_min15.5; - productName = _idx_annotation_overlay_calculator_7B50CB48_ios_min15.5; - productReference = AED7A97F793CF2A000000000 /* lib_idx_annotation_overlay_calculator_7B50CB48_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E5016749B1D400000000 /* _idx_non_max_suppression_calculator_EA803631_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D9965EDE81500000000 /* Build configuration list for PBXNativeTarget "_idx_non_max_suppression_calculator_EA803631_ios_min11.0" */; - buildPhases = ( - 20199D1C000000000000004A /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - ); - name = _idx_non_max_suppression_calculator_EA803631_ios_min11.0; - productName = _idx_non_max_suppression_calculator_EA803631_ios_min11.0; - productReference = AED7A97F9C7F492A00000000 /* lib_idx_non_max_suppression_calculator_EA803631_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E501680A55C800000000 /* _idx_MPPGraphGPUData_733A9D5A_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D99BD5C422900000000 /* Build configuration list for PBXNativeTarget "_idx_MPPGraphGPUData_733A9D5A_ios_min11.0" */; - buildPhases = ( - 20199D1C0000000000000016 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - EC2CE7DABA73597300000000 /* PBXTargetDependency */, - EC2CE7DABA73597300000000 /* PBXTargetDependency */, - ); - name = _idx_MPPGraphGPUData_733A9D5A_ios_min11.0; - productName = _idx_MPPGraphGPUData_733A9D5A_ios_min11.0; - productReference = AED7A97F8E483A7800000000 /* lib_idx_MPPGraphGPUData_733A9D5A_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E5016999113E00000000 /* _idx_pixel_buffer_pool_util_1B0D8C74_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D99291CEF2C00000000 /* Build configuration list for PBXNativeTarget "_idx_pixel_buffer_pool_util_1B0D8C74_ios_min11.0" */; - buildPhases = ( - 20199D1C0000000000000003 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - EC2CE7DA4EF47AD100000000 /* PBXTargetDependency */, - ); - name = _idx_pixel_buffer_pool_util_1B0D8C74_ios_min11.0; - productName = _idx_pixel_buffer_pool_util_1B0D8C74_ios_min11.0; - productReference = AED7A97FADF4C90200000000 /* lib_idx_pixel_buffer_pool_util_1B0D8C74_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E5016B67FEEC00000000 /* _idx_FaceMeshGPULibrary_2BF20B88_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D99A642A64F00000000 /* Build configuration list for PBXNativeTarget "_idx_FaceMeshGPULibrary_2BF20B88_ios_min11.0" */; - buildPhases = ( - 20199D1C0000000000000000 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - EC2CE7DAF07E016F00000000 /* PBXTargetDependency */, - ); - name = _idx_FaceMeshGPULibrary_2BF20B88_ios_min11.0; - productName = _idx_FaceMeshGPULibrary_2BF20B88_ios_min11.0; - productReference = AED7A97FB913DCD000000000 /* lib_idx_FaceMeshGPULibrary_2BF20B88_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E5016B9DD04400000000 /* _idx_shader_util_F77AE4F3_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D99C8B73DBA00000000 /* Build configuration list for PBXNativeTarget "_idx_shader_util_F77AE4F3_ios_min11.0" */; - buildPhases = ( - 20199D1C0000000000000022 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - ); - name = _idx_shader_util_F77AE4F3_ios_min11.0; - productName = _idx_shader_util_F77AE4F3_ios_min11.0; - productReference = AED7A97FE5E909D200000000 /* lib_idx_shader_util_F77AE4F3_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E5016D63274000000000 /* _idx_tensors_to_detections_calculator_888E512F_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D9927F8B20300000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_detections_calculator_888E512F_ios_min11.0" */; - buildPhases = ( - 20199D1C0000000000000052 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - ); - name = _idx_tensors_to_detections_calculator_888E512F_ios_min11.0; - productName = _idx_tensors_to_detections_calculator_888E512F_ios_min11.0; - productReference = AED7A97FCFB0DD5600000000 /* lib_idx_tensors_to_detections_calculator_888E512F_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E5017039FC3C00000000 /* _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_A15F304E_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D9937C5646800000000 /* 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_A15F304E_ios_min15.5" */; - buildPhases = ( - 20199D1C000000000000005B /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - EC2CE7DA98D05C4B00000000 /* PBXTargetDependency */, - EC2CE7DAD05A039B00000000 /* PBXTargetDependency */, - EC2CE7DA652D07FF00000000 /* 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_A15F304E_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_A15F304E_ios_min15.5; - productReference = AED7A97FDCB5CFF600000000 /* 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_A15F304E_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E5017073403C00000000 /* _idx_core_core-ios_4EDC2AF0_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D99DB0558BC00000000 /* Build configuration list for PBXNativeTarget "_idx_core_core-ios_4EDC2AF0_ios_min11.0" */; - buildPhases = ( - 20199D1C0000000000000008 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - EC2CE7DAE67C2A1B00000000 /* PBXTargetDependency */, - EC2CE7DAE67C2A1B00000000 /* PBXTargetDependency */, - EC2CE7DA2B54506300000000 /* PBXTargetDependency */, - EC2CE7DAE67C2A1B00000000 /* PBXTargetDependency */, - ); - name = "_idx_core_core-ios_4EDC2AF0_ios_min11.0"; - productName = "_idx_core_core-ios_4EDC2AF0_ios_min11.0"; - productReference = AED7A97FC56FBE0A00000000 /* lib_idx_core_core-ios_4EDC2AF0_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E50171C7DBE400000000 /* _idx_core_core-ios_4EDC2AF0_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D9953E1984400000000 /* Build configuration list for PBXNativeTarget "_idx_core_core-ios_4EDC2AF0_ios_min15.5" */; - buildPhases = ( - 20199D1C000000000000000D /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - EC2CE7DA0C83C67D00000000 /* PBXTargetDependency */, - EC2CE7DAF3D581C900000000 /* PBXTargetDependency */, - EC2CE7DA0C83C67D00000000 /* PBXTargetDependency */, - EC2CE7DA0C83C67D00000000 /* PBXTargetDependency */, - ); - name = "_idx_core_core-ios_4EDC2AF0_ios_min15.5"; - productName = "_idx_core_core-ios_4EDC2AF0_ios_min15.5"; - productReference = AED7A97F733BC1A800000000 /* lib_idx_core_core-ios_4EDC2AF0_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E50176D9570200000000 /* _idx_gl_simple_shaders_6A91D77D_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D991E69B20A00000000 /* Build configuration list for PBXNativeTarget "_idx_gl_simple_shaders_6A91D77D_ios_min15.5" */; - buildPhases = ( - 20199D1C0000000000000028 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - ); - name = _idx_gl_simple_shaders_6A91D77D_ios_min15.5; - productName = _idx_gl_simple_shaders_6A91D77D_ios_min15.5; - productReference = AED7A97FA1BB1D7E00000000 /* lib_idx_gl_simple_shaders_6A91D77D_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E5017B881ECA00000000 /* _idx_tflite_model_loader_F900857E_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D999F4275A500000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_loader_F900857E_ios_min15.5" */; - buildPhases = ( - 20199D1C0000000000000046 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - EC2CE7DAD05A039B00000000 /* PBXTargetDependency */, - ); - name = _idx_tflite_model_loader_F900857E_ios_min15.5; - productName = _idx_tflite_model_loader_F900857E_ios_min15.5; - productReference = AED7A97F7668967200000000 /* lib_idx_tflite_model_loader_F900857E_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E50184D8D44000000000 /* _idx_cpu_util_B64315B8_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D99713C107300000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_util_B64315B8_ios_min15.5" */; - buildPhases = ( - 20199D1C0000000000000015 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - ); - name = _idx_cpu_util_B64315B8_ios_min15.5; - productName = _idx_cpu_util_B64315B8_ios_min15.5; - productReference = AED7A97FC8F4B9E000000000 /* lib_idx_cpu_util_B64315B8_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E5019537EA2600000000 /* _idx_gl_calculator_helper_D8986C65_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D991F01EA1200000000 /* Build configuration list for PBXNativeTarget "_idx_gl_calculator_helper_D8986C65_ios_min11.0" */; - buildPhases = ( - 20199D1C0000000000000023 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - EC2CE7DABA73597300000000 /* PBXTargetDependency */, - EC2CE7DA37FF534F00000000 /* PBXTargetDependency */, - EC2CE7DABA73597300000000 /* PBXTargetDependency */, - EC2CE7DAFE323FCF00000000 /* PBXTargetDependency */, - EC2CE7DA126D7CC700000000 /* PBXTargetDependency */, - EC2CE7DA6B9DD04500000000 /* PBXTargetDependency */, - EC2CE7DAFE323FCF00000000 /* PBXTargetDependency */, - ); - name = _idx_gl_calculator_helper_D8986C65_ios_min11.0; - productName = _idx_gl_calculator_helper_D8986C65_ios_min11.0; - productReference = AED7A97F17E9E7AC00000000 /* lib_idx_gl_calculator_helper_D8986C65_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E501965E9F0C00000000 /* OlaFaceUnityFramework */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D99F3B6E6E100000000 /* Build configuration list for PBXNativeTarget "OlaFaceUnityFramework" */; - buildPhases = ( - 72D56B2CDD3D6EF200000000 /* build //mediapipe/render/module/beauty/ios:OlaFaceUnityFramework */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, + C8719450B67384D100000000 /* PBXTargetDependency */, ); name = OlaFaceUnityFramework; productName = OlaFaceUnityFramework; - productReference = AED7A97F2CF5607E00000000 /* OlaFaceUnityFramework.framework */; + productReference = 8F62469E5B357FC400000000 /* OlaFaceUnityFramework.framework */; productType = "com.apple.product-type.framework"; }; - D807E501970493FA00000000 /* _idx_annotation_overlay_calculator_7B50CB48_ios_min11.0 */ = { + D50916B94683E49200000000 /* _idx_inference_calculator_metal_65084AC7_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = FA986D9910A050C000000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_overlay_calculator_7B50CB48_ios_min11.0" */; + buildConfigurationList = D31CF1F5F41F3C3600000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_metal_65084AC7_ios_min15.5" */; buildPhases = ( - 20199D1C0000000000000020 /* Sources */, + 3E7AC1A60000000000000049 /* Sources */, ); buildRules = ( ); dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - EC2CE7DA0AA81EC300000000 /* PBXTargetDependency */, - EC2CE7DAFE323FCF00000000 /* PBXTargetDependency */, - EC2CE7DA6B9DD04500000000 /* PBXTargetDependency */, - EC2CE7DA9537EA2700000000 /* PBXTargetDependency */, - EC2CE7DAE12D6E0F00000000 /* PBXTargetDependency */, + C8719450B67384D100000000 /* PBXTargetDependency */, + C8719450D3EB570900000000 /* PBXTargetDependency */, + C8719450CF5F5EE700000000 /* PBXTargetDependency */, + C87194508A94473900000000 /* PBXTargetDependency */, + C8719450C4F8B64100000000 /* PBXTargetDependency */, + C8719450A5AC836500000000 /* PBXTargetDependency */, ); - name = _idx_annotation_overlay_calculator_7B50CB48_ios_min11.0; - productName = _idx_annotation_overlay_calculator_7B50CB48_ios_min11.0; - productReference = AED7A97FF8761CBE00000000 /* lib_idx_annotation_overlay_calculator_7B50CB48_ios_min11.0.a */; + name = _idx_inference_calculator_metal_65084AC7_ios_min15.5; + productName = _idx_inference_calculator_metal_65084AC7_ios_min15.5; + productReference = 8F62469EFFA887E800000000 /* lib_idx_inference_calculator_metal_65084AC7_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - D807E50198631CBE00000000 /* _idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_7F9F05C6_ios_min15.5 */ = { + D50916B947A74E8C00000000 /* _idx_FaceMeshGPULibrary_61E6B091_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = FA986D99896DC09700000000 /* Build configuration list for PBXNativeTarget "_idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_7F9F05C6_ios_min15.5" */; + buildConfigurationList = D31CF1F5D39116C600000000 /* Build configuration list for PBXNativeTarget "_idx_FaceMeshGPULibrary_61E6B091_ios_min15.5" */; buildPhases = ( - 20199D1C000000000000003E /* Sources */, + 3E7AC1A6000000000000000B /* Sources */, ); buildRules = ( ); dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, + C8719450B67384D100000000 /* PBXTargetDependency */, + C8719450B474037D00000000 /* PBXTargetDependency */, + C87194505924467F00000000 /* PBXTargetDependency */, ); - name = _idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_7F9F05C6_ios_min15.5; - productName = _idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_7F9F05C6_ios_min15.5; - productReference = AED7A97F2BAC9A6C00000000 /* lib_idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_7F9F05C6_ios_min15.5.a */; + name = _idx_FaceMeshGPULibrary_61E6B091_ios_min15.5; + productName = _idx_FaceMeshGPULibrary_61E6B091_ios_min15.5; + productReference = 8F62469EBE46B07800000000 /* lib_idx_FaceMeshGPULibrary_61E6B091_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - D807E50198D05C4A00000000 /* _idx_gl_calculator_helper_D8986C65_ios_min15.5 */ = { + D50916B94835E8D400000000 /* _idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = FA986D99A133568300000000 /* Build configuration list for PBXNativeTarget "_idx_gl_calculator_helper_D8986C65_ios_min15.5" */; + buildConfigurationList = D31CF1F52A49F50200000000 /* Build configuration list for PBXNativeTarget "_idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min15.5" */; buildPhases = ( - 20199D1C000000000000002A /* Sources */, + 3E7AC1A6000000000000004F /* Sources */, ); buildRules = ( ); dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - EC2CE7DABE53424B00000000 /* PBXTargetDependency */, - EC2CE7DABE53424B00000000 /* PBXTargetDependency */, - EC2CE7DA60A115C900000000 /* PBXTargetDependency */, - EC2CE7DA4594765900000000 /* PBXTargetDependency */, - EC2CE7DAD5C6ED8300000000 /* PBXTargetDependency */, - EC2CE7DA60A115C900000000 /* PBXTargetDependency */, - EC2CE7DABFC8082300000000 /* PBXTargetDependency */, + C8719450B67384D100000000 /* PBXTargetDependency */, ); - name = _idx_gl_calculator_helper_D8986C65_ios_min15.5; - productName = _idx_gl_calculator_helper_D8986C65_ios_min15.5; - productReference = AED7A97FEDAA79AC00000000 /* lib_idx_gl_calculator_helper_D8986C65_ios_min15.5.a */; + name = _idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min15.5; + productName = _idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min15.5; + productReference = 8F62469E0CEA424A00000000 /* lib_idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - D807E501A00763E200000000 /* _idx_inference_calculator_metal_712F45E9_ios_min15.5 */ = { + D50916B94A6C65DE00000000 /* _idx_annotation_renderer_1DCBFDF7_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = FA986D9928F2BAC000000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_metal_712F45E9_ios_min15.5" */; + buildConfigurationList = D31CF1F58846F13F00000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_renderer_1DCBFDF7_ios_min15.5" */; buildPhases = ( - 20199D1C0000000000000049 /* Sources */, + 3E7AC1A6000000000000002B /* Sources */, ); buildRules = ( ); dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - EC2CE7DAE1EABCB700000000 /* PBXTargetDependency */, - EC2CE7DA12A6202500000000 /* PBXTargetDependency */, - EC2CE7DA4843522D00000000 /* PBXTargetDependency */, - EC2CE7DA4C0DA67100000000 /* PBXTargetDependency */, - EC2CE7DA60A115C900000000 /* PBXTargetDependency */, + C8719450B67384D100000000 /* PBXTargetDependency */, ); - name = _idx_inference_calculator_metal_712F45E9_ios_min15.5; - productName = _idx_inference_calculator_metal_712F45E9_ios_min15.5; - productReference = AED7A97F8D8DDBC600000000 /* lib_idx_inference_calculator_metal_712F45E9_ios_min15.5.a */; + name = _idx_annotation_renderer_1DCBFDF7_ios_min15.5; + productName = _idx_annotation_renderer_1DCBFDF7_ios_min15.5; + productReference = 8F62469E9C12AC1000000000 /* lib_idx_annotation_renderer_1DCBFDF7_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - D807E501A20D2A1200000000 /* _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_A15F304E_ios_min11.0 */ = { + D50916B94C962DEC00000000 /* _idx_MPPMetalHelper_8A6739B5_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = FA986D99AFA7731000000000 /* 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_A15F304E_ios_min11.0" */; + buildConfigurationList = D31CF1F5AB45DADF00000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalHelper_8A6739B5_ios_min11.0" */; buildPhases = ( - 20199D1C000000000000005A /* Sources */, + 3E7AC1A60000000000000018 /* Sources */, ); buildRules = ( ); dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - EC2CE7DA9537EA2700000000 /* PBXTargetDependency */, - EC2CE7DA62D4D60D00000000 /* PBXTargetDependency */, - EC2CE7DA5F25395100000000 /* PBXTargetDependency */, + C8719450B67384D100000000 /* PBXTargetDependency */, + C8719450FB58229B00000000 /* 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_A15F304E_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_A15F304E_ios_min11.0; - productReference = AED7A97F71FB390000000000 /* 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_A15F304E_ios_min11.0.a */; + name = _idx_MPPMetalHelper_8A6739B5_ios_min11.0; + productName = _idx_MPPMetalHelper_8A6739B5_ios_min11.0; + productReference = 8F62469E17399DDC00000000 /* lib_idx_MPPMetalHelper_8A6739B5_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - D807E501A2DE10FC00000000 /* _idx_image_to_tensor_calculator_C3DB5E1E_ios_min15.5 */ = { + D50916B94E485F5400000000 /* _idx_split_vector_calculator_73890910_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = FA986D9984E04B4800000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_calculator_C3DB5E1E_ios_min15.5" */; + buildConfigurationList = D31CF1F503CB892C00000000 /* Build configuration list for PBXNativeTarget "_idx_split_vector_calculator_73890910_ios_min15.5" */; buildPhases = ( - 20199D1C000000000000003D /* Sources */, + 3E7AC1A60000000000000051 /* Sources */, ); buildRules = ( ); dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - EC2CE7DA98631CBF00000000 /* PBXTargetDependency */, - EC2CE7DA5F558F1D00000000 /* PBXTargetDependency */, + C8719450B67384D100000000 /* PBXTargetDependency */, + C8719450BAEEE68700000000 /* PBXTargetDependency */, ); - name = _idx_image_to_tensor_calculator_C3DB5E1E_ios_min15.5; - productName = _idx_image_to_tensor_calculator_C3DB5E1E_ios_min15.5; - productReference = AED7A97FDE84DAA600000000 /* lib_idx_image_to_tensor_calculator_C3DB5E1E_ios_min15.5.a */; + name = _idx_split_vector_calculator_73890910_ios_min15.5; + productName = _idx_split_vector_calculator_73890910_ios_min15.5; + productReference = 8F62469EAF11437800000000 /* lib_idx_split_vector_calculator_73890910_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - D807E501B392E15C00000000 /* _idx_image_to_tensor_calculator_C3DB5E1E_ios_min11.0 */ = { + D50916B9507BECC600000000 /* _idx_pixel_buffer_pool_util_C139F8B5_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = FA986D99406F85CE00000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_calculator_C3DB5E1E_ios_min11.0" */; + buildConfigurationList = D31CF1F5AC9881C700000000 /* Build configuration list for PBXNativeTarget "_idx_pixel_buffer_pool_util_C139F8B5_ios_min15.5" */; buildPhases = ( - 20199D1C000000000000003A /* Sources */, + 3E7AC1A6000000000000000E /* Sources */, ); buildRules = ( ); dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - EC2CE7DA45A4DD6500000000 /* PBXTargetDependency */, - EC2CE7DAF727D6E300000000 /* PBXTargetDependency */, + C8719450B67384D100000000 /* PBXTargetDependency */, + C871945092DAA70B00000000 /* PBXTargetDependency */, ); - name = _idx_image_to_tensor_calculator_C3DB5E1E_ios_min11.0; - productName = _idx_image_to_tensor_calculator_C3DB5E1E_ios_min11.0; - productReference = AED7A97F0453AA5800000000 /* lib_idx_image_to_tensor_calculator_C3DB5E1E_ios_min11.0.a */; + name = _idx_pixel_buffer_pool_util_C139F8B5_ios_min15.5; + productName = _idx_pixel_buffer_pool_util_C139F8B5_ios_min15.5; + productReference = 8F62469ED78C49CA00000000 /* lib_idx_pixel_buffer_pool_util_C139F8B5_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - D807E501B5CD309A00000000 /* _idx_image_to_tensor_converter_metal_9AA64D0A_ios_min15.5 */ = { + D50916B952EE187C00000000 /* _idx_transpose_conv_bias_94247583_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = FA986D99A6D80A6900000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_metal_9AA64D0A_ios_min15.5" */; + buildConfigurationList = D31CF1F50FD9148A00000000 /* Build configuration list for PBXNativeTarget "_idx_transpose_conv_bias_94247583_ios_min11.0" */; buildPhases = ( - 20199D1C0000000000000041 /* Sources */, + 3E7AC1A60000000000000032 /* Sources */, ); buildRules = ( ); dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - EC2CE7DA98631CBF00000000 /* PBXTargetDependency */, - EC2CE7DA4594765900000000 /* PBXTargetDependency */, - EC2CE7DA4C0DA67100000000 /* PBXTargetDependency */, + C8719450B67384D100000000 /* PBXTargetDependency */, ); - name = _idx_image_to_tensor_converter_metal_9AA64D0A_ios_min15.5; - productName = _idx_image_to_tensor_converter_metal_9AA64D0A_ios_min15.5; - productReference = AED7A97F4144F2D600000000 /* lib_idx_image_to_tensor_converter_metal_9AA64D0A_ios_min15.5.a */; + name = _idx_transpose_conv_bias_94247583_ios_min11.0; + productName = _idx_transpose_conv_bias_94247583_ios_min11.0; + productReference = 8F62469ECB93143800000000 /* lib_idx_transpose_conv_bias_94247583_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - D807E501B9EA5DEE00000000 /* _idx_inference_calculator_metal_712F45E9_ios_min11.0 */ = { + D50916B955A38FE400000000 /* _idx_image_to_tensor_converter_metal_A1DB3550_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = FA986D9959CD9AE000000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_metal_712F45E9_ios_min11.0" */; + buildConfigurationList = D31CF1F584850D7B00000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_metal_A1DB3550_ios_min11.0" */; buildPhases = ( - 20199D1C0000000000000048 /* Sources */, + 3E7AC1A60000000000000040 /* Sources */, ); buildRules = ( ); dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - EC2CE7DAD625937500000000 /* PBXTargetDependency */, - EC2CE7DA25CEBB5F00000000 /* PBXTargetDependency */, - EC2CE7DAFE323FCF00000000 /* PBXTargetDependency */, - EC2CE7DAF70D126B00000000 /* PBXTargetDependency */, - EC2CE7DABBDDDAB900000000 /* PBXTargetDependency */, + C8719450B67384D100000000 /* PBXTargetDependency */, + C8719450BAB5C57F00000000 /* PBXTargetDependency */, + C87194504C962DED00000000 /* PBXTargetDependency */, + C871945016C7A06F00000000 /* PBXTargetDependency */, ); - name = _idx_inference_calculator_metal_712F45E9_ios_min11.0; - productName = _idx_inference_calculator_metal_712F45E9_ios_min11.0; - productReference = AED7A97F97D718F200000000 /* lib_idx_inference_calculator_metal_712F45E9_ios_min11.0.a */; + name = _idx_image_to_tensor_converter_metal_A1DB3550_ios_min11.0; + productName = _idx_image_to_tensor_converter_metal_A1DB3550_ios_min11.0; + productReference = 8F62469E741FC72000000000 /* lib_idx_image_to_tensor_converter_metal_A1DB3550_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - D807E501BA73597200000000 /* _idx_gpu_buffer_multi_pool_gl_context_4D0E07B8_ios_min11.0 */ = { + D50916B955AF4C6400000000 /* _idx_op_resolver_29CCF89E_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = FA986D990BA7F1C900000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_multi_pool_gl_context_4D0E07B8_ios_min11.0" */; + buildConfigurationList = D31CF1F5260C68A100000000 /* Build configuration list for PBXNativeTarget "_idx_op_resolver_29CCF89E_ios_min11.0" */; buildPhases = ( - 20199D1C0000000000000007 /* Sources */, + 3E7AC1A6000000000000004C /* Sources */, ); buildRules = ( ); dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - EC2CE7DA6999113F00000000 /* PBXTargetDependency */, - EC2CE7DAFE323FCF00000000 /* PBXTargetDependency */, - EC2CE7DA126D7CC700000000 /* PBXTargetDependency */, - EC2CE7DA4EF47AD100000000 /* PBXTargetDependency */, + C8719450B67384D100000000 /* PBXTargetDependency */, ); - name = _idx_gpu_buffer_multi_pool_gl_context_4D0E07B8_ios_min11.0; - productName = _idx_gpu_buffer_multi_pool_gl_context_4D0E07B8_ios_min11.0; - productReference = AED7A97F7438783800000000 /* lib_idx_gpu_buffer_multi_pool_gl_context_4D0E07B8_ios_min11.0.a */; + name = _idx_op_resolver_29CCF89E_ios_min11.0; + productName = _idx_op_resolver_29CCF89E_ios_min11.0; + productReference = 8F62469E9F01B81400000000 /* lib_idx_op_resolver_29CCF89E_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - D807E501BBDDDAB800000000 /* _idx_mediapipe_framework_ios_E5983FAB_ios_min11.0 */ = { + D50916B95728CE7C00000000 /* _idx_detection_projection_calculator_07107D71_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = FA986D998B11C4FB00000000 /* Build configuration list for PBXNativeTarget "_idx_mediapipe_framework_ios_E5983FAB_ios_min11.0" */; + buildConfigurationList = D31CF1F55BE97ADA00000000 /* Build configuration list for PBXNativeTarget "_idx_detection_projection_calculator_07107D71_ios_min15.5" */; buildPhases = ( - 20199D1C0000000000000019 /* Sources */, + 3E7AC1A60000000000000039 /* Sources */, ); buildRules = ( ); dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - EC2CE7DA6999113F00000000 /* PBXTargetDependency */, - EC2CE7DA680A55C900000000 /* PBXTargetDependency */, - EC2CE7DA4EF47AD100000000 /* PBXTargetDependency */, - EC2CE7DA462EFBA300000000 /* PBXTargetDependency */, - EC2CE7DAFE323FCF00000000 /* PBXTargetDependency */, + C8719450B67384D100000000 /* PBXTargetDependency */, ); - name = _idx_mediapipe_framework_ios_E5983FAB_ios_min11.0; - productName = _idx_mediapipe_framework_ios_E5983FAB_ios_min11.0; - productReference = AED7A97FA4952BDE00000000 /* lib_idx_mediapipe_framework_ios_E5983FAB_ios_min11.0.a */; + name = _idx_detection_projection_calculator_07107D71_ios_min15.5; + productName = _idx_detection_projection_calculator_07107D71_ios_min15.5; + productReference = 8F62469E3FF92D1600000000 /* lib_idx_detection_projection_calculator_07107D71_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - D807E501BE53424A00000000 /* _idx_gpu_buffer_multi_pool_gl_context_4D0E07B8_ios_min15.5 */ = { + D50916B95924467E00000000 /* _idx_core_core-ios_731E135C_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = FA986D99C161904800000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_multi_pool_gl_context_4D0E07B8_ios_min15.5" */; + buildConfigurationList = D31CF1F523E0E87900000000 /* Build configuration list for PBXNativeTarget "_idx_core_core-ios_731E135C_ios_min15.5" */; buildPhases = ( - 20199D1C0000000000000014 /* Sources */, + 3E7AC1A60000000000000013 /* Sources */, ); buildRules = ( ); dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - EC2CE7DA60A115C900000000 /* PBXTargetDependency */, - EC2CE7DA4594765900000000 /* PBXTargetDependency */, - EC2CE7DAD40A970700000000 /* PBXTargetDependency */, - EC2CE7DAF8F8F01D00000000 /* PBXTargetDependency */, + C8719450B67384D100000000 /* PBXTargetDependency */, + C8719450FD5CA03100000000 /* PBXTargetDependency */, + C8719450FD5CA03100000000 /* PBXTargetDependency */, + C8719450797718E700000000 /* PBXTargetDependency */, + C8719450FD5CA03100000000 /* PBXTargetDependency */, ); - name = _idx_gpu_buffer_multi_pool_gl_context_4D0E07B8_ios_min15.5; - productName = _idx_gpu_buffer_multi_pool_gl_context_4D0E07B8_ios_min15.5; - productReference = AED7A97F6A89A27A00000000 /* lib_idx_gpu_buffer_multi_pool_gl_context_4D0E07B8_ios_min15.5.a */; + name = "_idx_core_core-ios_731E135C_ios_min15.5"; + productName = "_idx_core_core-ios_731E135C_ios_min15.5"; + productReference = 8F62469EDF10012C00000000 /* lib_idx_core_core-ios_731E135C_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - D807E501BFC8082200000000 /* _idx_shader_util_F77AE4F3_ios_min15.5 */ = { + D50916B95B3B8F3E00000000 /* _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = FA986D9953D5785900000000 /* Build configuration list for PBXNativeTarget "_idx_shader_util_F77AE4F3_ios_min15.5" */; + buildConfigurationList = D31CF1F5771C263400000000 /* Build configuration list for PBXNativeTarget "_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min15.5" */; buildPhases = ( - 20199D1C0000000000000027 /* Sources */, + 3E7AC1A6000000000000005B /* Sources */, ); buildRules = ( ); dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, + C8719450B67384D100000000 /* PBXTargetDependency */, + C871945091B35B4700000000 /* PBXTargetDependency */, + C87194504835E8D500000000 /* PBXTargetDependency */, + C8719450BAEEE68700000000 /* PBXTargetDependency */, ); - name = _idx_shader_util_F77AE4F3_ios_min15.5; - productName = _idx_shader_util_F77AE4F3_ios_min15.5; - productReference = AED7A97F643D598200000000 /* lib_idx_shader_util_F77AE4F3_ios_min15.5.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_FDB0FEDC_ios_min15.5; + productName = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min15.5; + productReference = 8F62469E6F05DF7E00000000 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - D807E501C07677A200000000 /* _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_7ED8D1B5_ios_min11.0 */ = { + D50916B95D80A99A00000000 /* _idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = FA986D99B516DF3400000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_7ED8D1B5_ios_min11.0" */; + buildConfigurationList = D31CF1F578F47AF400000000 /* Build configuration list for PBXNativeTarget "_idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min15.5" */; buildPhases = ( - 20199D1C0000000000000054 /* Sources */, + 3E7AC1A6000000000000003F /* Sources */, ); buildRules = ( ); dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, + C8719450B67384D100000000 /* PBXTargetDependency */, ); - name = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_7ED8D1B5_ios_min11.0; - productName = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_7ED8D1B5_ios_min11.0; - productReference = AED7A97FDD1949C800000000 /* lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_7ED8D1B5_ios_min11.0.a */; + name = _idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min15.5; + productName = _idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min15.5; + productReference = 8F62469ED2C19F4E00000000 /* lib_idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - D807E501C284C0CA00000000 /* mediapipe-render-module-beauty-ios-OlaFaceUnityLibrary */ = { + D50916B9600148FA00000000 /* _idx_transpose_conv_bias_94247583_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = FA986D993C2C805100000000 /* Build configuration list for PBXNativeTarget "mediapipe-render-module-beauty-ios-OlaFaceUnityLibrary" */; + buildConfigurationList = D31CF1F5A67AB4C800000000 /* Build configuration list for PBXNativeTarget "_idx_transpose_conv_bias_94247583_ios_min15.5" */; buildPhases = ( - 72D56B2CFA6D815F00000000 /* build //mediapipe/render/module/beauty/ios:OlaFaceUnityLibrary */, + 3E7AC1A60000000000000037 /* Sources */, ); buildRules = ( ); dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, + C8719450B67384D100000000 /* PBXTargetDependency */, + ); + name = _idx_transpose_conv_bias_94247583_ios_min15.5; + productName = _idx_transpose_conv_bias_94247583_ios_min15.5; + productReference = 8F62469EA94AD89E00000000 /* lib_idx_transpose_conv_bias_94247583_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B960D0021C00000000 /* _idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F5B769070700000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min11.0" */; + buildPhases = ( + 3E7AC1A60000000000000004 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + C871945080FCD45900000000 /* PBXTargetDependency */, + C8719450CB8F507D00000000 /* PBXTargetDependency */, + C8719450BAB5C57F00000000 /* PBXTargetDependency */, + C87194500A556C3100000000 /* PBXTargetDependency */, + ); + name = _idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min11.0; + productName = _idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min11.0; + productReference = 8F62469E67F72F7400000000 /* lib_idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B966C0283200000000 /* _idx_begin_loop_calculator_55C0335F_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F5862CD19300000000 /* Build configuration list for PBXNativeTarget "_idx_begin_loop_calculator_55C0335F_ios_min11.0" */; + buildPhases = ( + 3E7AC1A6000000000000002C /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + ); + name = _idx_begin_loop_calculator_55C0335F_ios_min11.0; + productName = _idx_begin_loop_calculator_55C0335F_ios_min11.0; + productReference = 8F62469ED4FD547400000000 /* lib_idx_begin_loop_calculator_55C0335F_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B96D62510400000000 /* _idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F5240434D500000000 /* Build configuration list for PBXNativeTarget "_idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min11.0" */; + buildPhases = ( + 3E7AC1A60000000000000009 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + ); + name = _idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min11.0; + productName = _idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min11.0; + productReference = 8F62469EADA7E74800000000 /* lib_idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B97245140600000000 /* _idx_detection_projection_calculator_07107D71_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F5F90A485C00000000 /* Build configuration list for PBXNativeTarget "_idx_detection_projection_calculator_07107D71_ios_min11.0" */; + buildPhases = ( + 3E7AC1A60000000000000038 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + ); + name = _idx_detection_projection_calculator_07107D71_ios_min11.0; + productName = _idx_detection_projection_calculator_07107D71_ios_min11.0; + productReference = 8F62469ECE8AEA1800000000 /* lib_idx_detection_projection_calculator_07107D71_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B9728267EC00000000 /* _idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F5CD20A9BC00000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min11.0" */; + buildPhases = ( + 3E7AC1A60000000000000056 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + C871945055AF4C6500000000 /* PBXTargetDependency */, + C871945032A4BF4B00000000 /* PBXTargetDependency */, + ); + name = _idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min11.0; + productName = _idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min11.0; + productReference = 8F62469E674B854C00000000 /* lib_idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B979337D3200000000 /* _idx_MPPGraphGPUData_DE328030_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F54D78F78700000000 /* Build configuration list for PBXNativeTarget "_idx_MPPGraphGPUData_DE328030_ios_min11.0" */; + buildPhases = ( + 3E7AC1A60000000000000016 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + C871945060D0021D00000000 /* PBXTargetDependency */, + C871945060D0021D00000000 /* PBXTargetDependency */, + ); + name = _idx_MPPGraphGPUData_DE328030_ios_min11.0; + productName = _idx_MPPGraphGPUData_DE328030_ios_min11.0; + productReference = 8F62469ED1F0DC8C00000000 /* lib_idx_MPPGraphGPUData_DE328030_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B9797718E600000000 /* _idx_math_661952D5_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F5108ED90400000000 /* Build configuration list for PBXNativeTarget "_idx_math_661952D5_ios_min15.5" */; + buildPhases = ( + 3E7AC1A60000000000000015 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + ); + name = _idx_math_661952D5_ios_min15.5; + productName = _idx_math_661952D5_ios_min15.5; + productReference = 8F62469E64AF57E400000000 /* lib_idx_math_661952D5_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B97A50F2DE00000000 /* _idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F53DC2F8BB00000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min15.5" */; + buildPhases = ( + 3E7AC1A60000000000000059 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + ); + name = _idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min15.5; + productName = _idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min15.5; + productReference = 8F62469E07AA7C9800000000 /* lib_idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B97A8A9E1600000000 /* _idx_clip_vector_size_calculator_B472A55B_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F52E2F18FB00000000 /* Build configuration list for PBXNativeTarget "_idx_clip_vector_size_calculator_B472A55B_ios_min11.0" */; + buildPhases = ( + 3E7AC1A6000000000000002E /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + ); + name = _idx_clip_vector_size_calculator_B472A55B_ios_min11.0; + productName = _idx_clip_vector_size_calculator_B472A55B_ios_min11.0; + productReference = 8F62469EA6CEF2BC00000000 /* lib_idx_clip_vector_size_calculator_B472A55B_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B97E562BDE00000000 /* _idx_MPPMetalUtil_622319D3_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F5C0E3514600000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalUtil_622319D3_ios_min11.0" */; + buildPhases = ( + 3E7AC1A6000000000000001C /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + C8719450FB58229B00000000 /* PBXTargetDependency */, + ); + name = _idx_MPPMetalUtil_622319D3_ios_min11.0; + productName = _idx_MPPMetalUtil_622319D3_ios_min11.0; + productReference = 8F62469E8F2DAC9800000000 /* lib_idx_MPPMetalUtil_622319D3_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B980FCD45800000000 /* _idx_pixel_buffer_pool_util_C139F8B5_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F5C4CBD0A700000000 /* Build configuration list for PBXNativeTarget "_idx_pixel_buffer_pool_util_C139F8B5_ios_min11.0" */; + buildPhases = ( + 3E7AC1A60000000000000005 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + C87194500A556C3100000000 /* PBXTargetDependency */, + ); + name = _idx_pixel_buffer_pool_util_C139F8B5_ios_min11.0; + productName = _idx_pixel_buffer_pool_util_C139F8B5_ios_min11.0; + productReference = 8F62469E5202380400000000 /* lib_idx_pixel_buffer_pool_util_C139F8B5_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B9814C45F000000000 /* _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F5584994EA00000000 /* Build configuration list for PBXNativeTarget "_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min11.0" */; + buildPhases = ( + 3E7AC1A6000000000000005A /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + C871945039FF367F00000000 /* PBXTargetDependency */, + C87194508AC3922B00000000 /* PBXTargetDependency */, + C87194508C82B9EF00000000 /* PBXTargetDependency */, + ); + name = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min11.0; + productName = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min11.0; + productReference = 8F62469E6CEE53C200000000 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B98A94473800000000 /* _idx_MPPMetalHelper_8A6739B5_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F5A618424C00000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalHelper_8A6739B5_ios_min15.5" */; + buildPhases = ( + 3E7AC1A6000000000000001A /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + C8719450CF5F5EE700000000 /* PBXTargetDependency */, + ); + name = _idx_MPPMetalHelper_8A6739B5_ios_min15.5; + productName = _idx_MPPMetalHelper_8A6739B5_ios_min15.5; + productReference = 8F62469E5BC465A400000000 /* lib_idx_MPPMetalHelper_8A6739B5_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B98AC3922A00000000 /* _idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F50DE3243100000000 /* Build configuration list for PBXNativeTarget "_idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min11.0" */; + buildPhases = ( + 3E7AC1A6000000000000004E /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + ); + name = _idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min11.0; + productName = _idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min11.0; + productReference = 8F62469E085F8F9000000000 /* lib_idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B98C82B9EE00000000 /* _idx_resource_util_0C14DDDC_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F54EEBF9AD00000000 /* Build configuration list for PBXNativeTarget "_idx_resource_util_0C14DDDC_ios_min11.0" */; + buildPhases = ( + 3E7AC1A60000000000000044 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + ); + name = _idx_resource_util_0C14DDDC_ios_min11.0; + productName = _idx_resource_util_0C14DDDC_ios_min11.0; + productReference = 8F62469E8B3041AE00000000 /* lib_idx_resource_util_0C14DDDC_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B991B35B4600000000 /* _idx_gl_calculator_helper_6AE62265_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F5840DC56100000000 /* Build configuration list for PBXNativeTarget "_idx_gl_calculator_helper_6AE62265_ios_min15.5" */; + buildPhases = ( + 3E7AC1A60000000000000028 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + C8719450395CFE5100000000 /* PBXTargetDependency */, + C87194501AFB53CB00000000 /* PBXTargetDependency */, + C8719450C4F8B64100000000 /* PBXTargetDependency */, + C87194501AFB53CB00000000 /* PBXTargetDependency */, + C8719450C4F8B64100000000 /* PBXTargetDependency */, + C871945017CF694F00000000 /* PBXTargetDependency */, + C8719450EC4DADE300000000 /* PBXTargetDependency */, + ); + name = _idx_gl_calculator_helper_6AE62265_ios_min15.5; + productName = _idx_gl_calculator_helper_6AE62265_ios_min15.5; + productReference = 8F62469EAE2EAF7600000000 /* lib_idx_gl_calculator_helper_6AE62265_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B992DAA70A00000000 /* _idx_util_66001351_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F5D4B3E68C00000000 /* Build configuration list for PBXNativeTarget "_idx_util_66001351_ios_min15.5" */; + buildPhases = ( + 3E7AC1A6000000000000000F /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + ); + name = _idx_util_66001351_ios_min15.5; + productName = _idx_util_66001351_ios_min15.5; + productReference = 8F62469EA4CF090C00000000 /* lib_idx_util_66001351_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B995AF928400000000 /* _idx_gl_simple_shaders_2CB9CEAD_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F5AF09680200000000 /* Build configuration list for PBXNativeTarget "_idx_gl_simple_shaders_2CB9CEAD_ios_min11.0" */; + buildPhases = ( + 3E7AC1A60000000000000022 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + ); + name = _idx_gl_simple_shaders_2CB9CEAD_ios_min11.0; + productName = _idx_gl_simple_shaders_2CB9CEAD_ios_min11.0; + productReference = 8F62469E0EA9897400000000 /* lib_idx_gl_simple_shaders_2CB9CEAD_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B995D3064000000000 /* _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F5D6C9910D00000000 /* Build configuration list for PBXNativeTarget "_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min15.5" */; + buildPhases = ( + 3E7AC1A60000000000000036 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + ); + name = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min15.5; + productName = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min15.5; + productReference = 8F62469E0CD245CA00000000 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B995D8B8F800000000 /* _idx_image_to_tensor_converter_metal_A1DB3550_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F5DBB222FF00000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_metal_A1DB3550_ios_min15.5" */; + buildPhases = ( + 3E7AC1A60000000000000041 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + C87194508A94473900000000 /* PBXTargetDependency */, + C87194505D80A99B00000000 /* PBXTargetDependency */, + C8719450395CFE5100000000 /* PBXTargetDependency */, + ); + name = _idx_image_to_tensor_converter_metal_A1DB3550_ios_min15.5; + productName = _idx_image_to_tensor_converter_metal_A1DB3550_ios_min15.5; + productReference = 8F62469E589A330C00000000 /* lib_idx_image_to_tensor_converter_metal_A1DB3550_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B9984088FC00000000 /* _idx_MPPGraphGPUData_DE328030_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F5382419CD00000000 /* Build configuration list for PBXNativeTarget "_idx_MPPGraphGPUData_DE328030_ios_min15.5" */; + buildPhases = ( + 3E7AC1A60000000000000017 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + C87194501AFB53CB00000000 /* PBXTargetDependency */, + C87194501AFB53CB00000000 /* PBXTargetDependency */, + ); + name = _idx_MPPGraphGPUData_DE328030_ios_min15.5; + productName = _idx_MPPGraphGPUData_DE328030_ios_min15.5; + productReference = 8F62469EB1085FB600000000 /* lib_idx_MPPGraphGPUData_DE328030_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B99B71962800000000 /* _idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F5D433B4FA00000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min11.0" */; + buildPhases = ( + 3E7AC1A60000000000000058 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + ); + name = _idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min11.0; + productName = _idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min11.0; + productReference = 8F62469E7371AF6400000000 /* lib_idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B99D198C3600000000 /* _idx_image_properties_calculator_gpu_service_941BB6CA_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F5EE7EDAB300000000 /* Build configuration list for PBXNativeTarget "_idx_image_properties_calculator_gpu_service_941BB6CA_ios_min11.0" */; + buildPhases = ( + 3E7AC1A60000000000000024 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + C8719450CB8F507D00000000 /* PBXTargetDependency */, + ); + name = _idx_image_properties_calculator_gpu_service_941BB6CA_ios_min11.0; + productName = _idx_image_properties_calculator_gpu_service_941BB6CA_ios_min11.0; + productReference = 8F62469EC53CE65200000000 /* lib_idx_image_properties_calculator_gpu_service_941BB6CA_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B9A5AC836400000000 /* _idx_MPPMetalUtil_622319D3_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F5D6A89A3300000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalUtil_622319D3_ios_min15.5" */; + buildPhases = ( + 3E7AC1A6000000000000001D /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + C8719450CF5F5EE700000000 /* PBXTargetDependency */, + ); + name = _idx_MPPMetalUtil_622319D3_ios_min15.5; + productName = _idx_MPPMetalUtil_622319D3_ios_min15.5; + productReference = 8F62469E2BADC1D200000000 /* lib_idx_MPPMetalUtil_622319D3_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B9ACE90FE200000000 /* _idx_annotation_renderer_1DCBFDF7_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F55A1A765300000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_renderer_1DCBFDF7_ios_min11.0" */; + buildPhases = ( + 3E7AC1A60000000000000021 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + ); + name = _idx_annotation_renderer_1DCBFDF7_ios_min11.0; + productName = _idx_annotation_renderer_1DCBFDF7_ios_min11.0; + productReference = 8F62469E610A735200000000 /* lib_idx_annotation_renderer_1DCBFDF7_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B9B1E8A01A00000000 /* _idx_annotation_overlay_calculator_7772C341_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F5B359006A00000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_overlay_calculator_7772C341_ios_min15.5" */; + buildPhases = ( + 3E7AC1A60000000000000026 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + C87194501918237700000000 /* PBXTargetDependency */, + C871945091B35B4700000000 /* PBXTargetDependency */, + C8719450EC4DADE300000000 /* PBXTargetDependency */, + C87194504A6C65DF00000000 /* PBXTargetDependency */, + C8719450C4F8B64100000000 /* PBXTargetDependency */, + ); + name = _idx_annotation_overlay_calculator_7772C341_ios_min15.5; + productName = _idx_annotation_overlay_calculator_7772C341_ios_min15.5; + productReference = 8F62469E013DE90000000000 /* lib_idx_annotation_overlay_calculator_7772C341_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B9B474037C00000000 /* _idx_olamodule_common_library_9ADAC3A9_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F5426068CB00000000 /* Build configuration list for PBXNativeTarget "_idx_olamodule_common_library_9ADAC3A9_ios_min15.5" */; + buildPhases = ( + 3E7AC1A6000000000000000C /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + C87194502FCF8C3F00000000 /* PBXTargetDependency */, + C8719450507BECC700000000 /* PBXTargetDependency */, + C8719450C4F8B64100000000 /* PBXTargetDependency */, + C871945092DAA70B00000000 /* PBXTargetDependency */, + ); + name = _idx_olamodule_common_library_9ADAC3A9_ios_min15.5; + productName = _idx_olamodule_common_library_9ADAC3A9_ios_min15.5; + productReference = 8F62469E7C7EAFF400000000 /* lib_idx_olamodule_common_library_9ADAC3A9_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B9B784310600000000 /* _idx_image_to_tensor_converter_opencv_1FC75D94_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F57D6EEAA600000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_opencv_1FC75D94_ios_min15.5" */; + buildPhases = ( + 3E7AC1A6000000000000003E /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + C87194505D80A99B00000000 /* PBXTargetDependency */, + ); + name = _idx_image_to_tensor_converter_opencv_1FC75D94_ios_min15.5; + productName = _idx_image_to_tensor_converter_opencv_1FC75D94_ios_min15.5; + productReference = 8F62469EA6A3680800000000 /* lib_idx_image_to_tensor_converter_opencv_1FC75D94_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B9B897142A00000000 /* _idx_clip_vector_size_calculator_B472A55B_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F5CB2C76A700000000 /* Build configuration list for PBXNativeTarget "_idx_clip_vector_size_calculator_B472A55B_ios_min15.5" */; + buildPhases = ( + 3E7AC1A6000000000000002F /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + ); + name = _idx_clip_vector_size_calculator_B472A55B_ios_min15.5; + productName = _idx_clip_vector_size_calculator_B472A55B_ios_min15.5; + productReference = 8F62469EBC7F293600000000 /* lib_idx_clip_vector_size_calculator_B472A55B_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B9BAB5C57E00000000 /* _idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F585DB7B5E00000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min11.0" */; + buildPhases = ( + 3E7AC1A60000000000000006 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + ); + name = _idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min11.0; + productName = _idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min11.0; + productReference = 8F62469EEFDC836800000000 /* lib_idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B9BAEEE68600000000 /* _idx_resource_util_0C14DDDC_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F5BEDCDC1900000000 /* Build configuration list for PBXNativeTarget "_idx_resource_util_0C14DDDC_ios_min15.5" */; + buildPhases = ( + 3E7AC1A60000000000000047 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + ); + name = _idx_resource_util_0C14DDDC_ios_min15.5; + productName = _idx_resource_util_0C14DDDC_ios_min15.5; + productReference = 8F62469E9075CB4E00000000 /* lib_idx_resource_util_0C14DDDC_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B9BCE0083800000000 /* _idx_cpu_util_D57AACFF_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F5F6AC550300000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_util_D57AACFF_ios_min11.0" */; + buildPhases = ( + 3E7AC1A60000000000000007 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + ); + name = _idx_cpu_util_D57AACFF_ios_min11.0; + productName = _idx_cpu_util_D57AACFF_ios_min11.0; + productReference = 8F62469EEB9B4B7E00000000 /* lib_idx_cpu_util_D57AACFF_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B9C0CFCF1600000000 /* _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F5D6333A3300000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min15.5" */; + buildPhases = ( + 3E7AC1A60000000000000055 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + ); + name = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min15.5; + productName = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min15.5; + productReference = 8F62469ECE781BC400000000 /* lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B9C415A01C00000000 /* _idx_max_unpooling_max_pool_argmax_09627F19_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F5C2B47BB900000000 /* Build configuration list for PBXNativeTarget "_idx_max_unpooling_max_pool_argmax_09627F19_ios_min11.0" */; + buildPhases = ( + 3E7AC1A60000000000000033 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + ); + name = _idx_max_unpooling_max_pool_argmax_09627F19_ios_min11.0; + productName = _idx_max_unpooling_max_pool_argmax_09627F19_ios_min11.0; + productReference = 8F62469E888D533E00000000 /* lib_idx_max_unpooling_max_pool_argmax_09627F19_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B9C4F8B64000000000 /* _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F5563270AB00000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min15.5" */; + buildPhases = ( + 3E7AC1A60000000000000010 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + C8719450395CFE5100000000 /* PBXTargetDependency */, + C871945092DAA70B00000000 /* PBXTargetDependency */, + C87194501AFB53CB00000000 /* PBXTargetDependency */, + C8719450395CFE5100000000 /* PBXTargetDependency */, + ); + name = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min15.5; + productName = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min15.5; + productReference = 8F62469EB9DEA8D000000000 /* lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B9C6E1DE5800000000 /* _idx_OlaFaceUnityLibrary_63B2D14F_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F5CE77D67600000000 /* Build configuration list for PBXNativeTarget "_idx_OlaFaceUnityLibrary_63B2D14F_ios_min11.0" */; + buildPhases = ( + 3E7AC1A6000000000000001E /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + C87194500EBED90100000000 /* PBXTargetDependency */, + C8719450F4D779E300000000 /* PBXTargetDependency */, + ); + name = _idx_OlaFaceUnityLibrary_63B2D14F_ios_min11.0; + productName = _idx_OlaFaceUnityLibrary_63B2D14F_ios_min11.0; + productReference = 8F62469EDCE124F400000000 /* lib_idx_OlaFaceUnityLibrary_63B2D14F_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B9C90C1D2600000000 /* _idx_OlaFaceUnityLibrary_63B2D14F_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F52B54149500000000 /* Build configuration list for PBXNativeTarget "_idx_OlaFaceUnityLibrary_63B2D14F_ios_min15.5" */; + buildPhases = ( + 3E7AC1A6000000000000001F /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + C87194505924467F00000000 /* PBXTargetDependency */, + C871945047A74E8D00000000 /* PBXTargetDependency */, + ); + name = _idx_OlaFaceUnityLibrary_63B2D14F_ios_min15.5; + productName = _idx_OlaFaceUnityLibrary_63B2D14F_ios_min15.5; + productReference = 8F62469E1E29E90E00000000 /* lib_idx_OlaFaceUnityLibrary_63B2D14F_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B9C9AA16CE00000000 /* _idx_non_max_suppression_calculator_E0C32C58_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F5FC74391300000000 /* Build configuration list for PBXNativeTarget "_idx_non_max_suppression_calculator_E0C32C58_ios_min15.5" */; + buildPhases = ( + 3E7AC1A6000000000000004B /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + ); + name = _idx_non_max_suppression_calculator_E0C32C58_ios_min15.5; + productName = _idx_non_max_suppression_calculator_E0C32C58_ios_min15.5; + productReference = 8F62469EB3DBCBD400000000 /* lib_idx_non_max_suppression_calculator_E0C32C58_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B9CB8F507C00000000 /* _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F5F0D47DA200000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min11.0" */; + buildPhases = ( + 3E7AC1A60000000000000003 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + C871945060D0021D00000000 /* PBXTargetDependency */, + C8719450BAB5C57F00000000 /* PBXTargetDependency */, + C8719450BAB5C57F00000000 /* PBXTargetDependency */, + C87194500A556C3100000000 /* PBXTargetDependency */, + ); + name = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min11.0; + productName = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min11.0; + productReference = 8F62469E3AE818C400000000 /* lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B9CF5F5EE600000000 /* _idx_mediapipe_framework_ios_596FA5D1_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F5C0DCCE1E00000000 /* Build configuration list for PBXNativeTarget "_idx_mediapipe_framework_ios_596FA5D1_ios_min15.5" */; + buildPhases = ( + 3E7AC1A6000000000000001B /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + C871945092DAA70B00000000 /* PBXTargetDependency */, + C8719450984088FD00000000 /* PBXTargetDependency */, + C87194502FCF8C3F00000000 /* PBXTargetDependency */, + C8719450507BECC700000000 /* PBXTargetDependency */, + C8719450C4F8B64100000000 /* PBXTargetDependency */, + ); + name = _idx_mediapipe_framework_ios_596FA5D1_ios_min15.5; + productName = _idx_mediapipe_framework_ios_596FA5D1_ios_min15.5; + productReference = 8F62469E1E79ACEC00000000 /* lib_idx_mediapipe_framework_ios_596FA5D1_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B9D093389A00000000 /* _idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F5E5FE63D100000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min15.5" */; + buildPhases = ( + 3E7AC1A60000000000000057 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + C871945032AD902100000000 /* PBXTargetDependency */, + C8719450D2A53B2100000000 /* PBXTargetDependency */, + ); + name = _idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min15.5; + productName = _idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min15.5; + productReference = 8F62469E8E4BB78C00000000 /* lib_idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B9D2A53B2000000000 /* _idx_op_resolver_29CCF89E_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F57AD665A800000000 /* Build configuration list for PBXNativeTarget "_idx_op_resolver_29CCF89E_ios_min15.5" */; + buildPhases = ( + 3E7AC1A6000000000000004D /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + ); + name = _idx_op_resolver_29CCF89E_ios_min15.5; + productName = _idx_op_resolver_29CCF89E_ios_min15.5; + productReference = 8F62469E51E896DC00000000 /* lib_idx_op_resolver_29CCF89E_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B9D2C9CDB800000000 /* _idx_olamodule_common_library_9ADAC3A9_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F5682B9BD300000000 /* Build configuration list for PBXNativeTarget "_idx_olamodule_common_library_9ADAC3A9_ios_min11.0" */; + buildPhases = ( + 3E7AC1A60000000000000001 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + C87194500A556C3100000000 /* PBXTargetDependency */, + C8719450CB8F507D00000000 /* PBXTargetDependency */, + C871945080FCD45900000000 /* PBXTargetDependency */, + C8719450BCE0083900000000 /* PBXTargetDependency */, + ); + name = _idx_olamodule_common_library_9ADAC3A9_ios_min11.0; + productName = _idx_olamodule_common_library_9ADAC3A9_ios_min11.0; + productReference = 8F62469E62CE283E00000000 /* lib_idx_olamodule_common_library_9ADAC3A9_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B9D320929E00000000 /* _idx_max_unpooling_max_pool_argmax_09627F19_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F5B4E3FF4C00000000 /* Build configuration list for PBXNativeTarget "_idx_max_unpooling_max_pool_argmax_09627F19_ios_min15.5" */; + buildPhases = ( + 3E7AC1A60000000000000035 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + ); + name = _idx_max_unpooling_max_pool_argmax_09627F19_ios_min15.5; + productName = _idx_max_unpooling_max_pool_argmax_09627F19_ios_min15.5; + productReference = 8F62469E66FF33FC00000000 /* lib_idx_max_unpooling_max_pool_argmax_09627F19_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B9D3EB570800000000 /* _idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F507002AA600000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min15.5" */; + buildPhases = ( + 3E7AC1A60000000000000045 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + C87194502FCF8C3F00000000 /* PBXTargetDependency */, + C8719450E5D2ED5700000000 /* PBXTargetDependency */, + ); + name = _idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min15.5; + productName = _idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min15.5; + productReference = 8F62469E6AB872C600000000 /* lib_idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B9DCA2423600000000 /* _idx_image_to_tensor_converter_opencv_1FC75D94_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F5C9D1E94200000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_opencv_1FC75D94_ios_min11.0" */; + buildPhases = ( + 3E7AC1A6000000000000003B /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + C871945016C7A06F00000000 /* PBXTargetDependency */, + ); + name = _idx_image_to_tensor_converter_opencv_1FC75D94_ios_min11.0; + productName = _idx_image_to_tensor_converter_opencv_1FC75D94_ios_min11.0; + productReference = 8F62469E5A86F8CA00000000 /* lib_idx_image_to_tensor_converter_opencv_1FC75D94_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B9E5D2ED5600000000 /* _idx_tflite_model_loader_6F62D289_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F5B89761A500000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_loader_6F62D289_ios_min15.5" */; + buildPhases = ( + 3E7AC1A60000000000000046 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + C8719450BAEEE68700000000 /* PBXTargetDependency */, + ); + name = _idx_tflite_model_loader_6F62D289_ios_min15.5; + productName = _idx_tflite_model_loader_6F62D289_ios_min15.5; + productReference = 8F62469E909C31C200000000 /* lib_idx_tflite_model_loader_6F62D289_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B9E673FEC600000000 /* _idx_tensors_to_detections_calculator_B4C99DEA_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F51D5FFF0A00000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_detections_calculator_B4C99DEA_ios_min15.5" */; + buildPhases = ( + 3E7AC1A60000000000000053 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + ); + name = _idx_tensors_to_detections_calculator_B4C99DEA_ios_min15.5; + productName = _idx_tensors_to_detections_calculator_B4C99DEA_ios_min15.5; + productReference = 8F62469E8BDFD12800000000 /* lib_idx_tensors_to_detections_calculator_B4C99DEA_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B9EAE9058600000000 /* _idx_non_max_suppression_calculator_E0C32C58_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F5470F13F900000000 /* Build configuration list for PBXNativeTarget "_idx_non_max_suppression_calculator_E0C32C58_ios_min11.0" */; + buildPhases = ( + 3E7AC1A6000000000000004A /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + ); + name = _idx_non_max_suppression_calculator_E0C32C58_ios_min11.0; + productName = _idx_non_max_suppression_calculator_E0C32C58_ios_min11.0; + productReference = 8F62469E4BC5B6E000000000 /* lib_idx_non_max_suppression_calculator_E0C32C58_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B9EC4DADE200000000 /* _idx_shader_util_209E4ED9_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F5F37A159900000000 /* Build configuration list for PBXNativeTarget "_idx_shader_util_209E4ED9_ios_min15.5" */; + buildPhases = ( + 3E7AC1A6000000000000002A /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + ); + name = _idx_shader_util_209E4ED9_ios_min15.5; + productName = _idx_shader_util_209E4ED9_ios_min15.5; + productReference = 8F62469EB86681C200000000 /* lib_idx_shader_util_209E4ED9_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B9EE60A18000000000 /* _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F5A9FB717B00000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min11.0" */; + buildPhases = ( + 3E7AC1A60000000000000054 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + ); + name = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min11.0; + productName = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min11.0; + productReference = 8F62469EFEC0AA7A00000000 /* lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B9EEDCEF1800000000 /* _idx_shader_util_209E4ED9_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F5CDECDB0700000000 /* Build configuration list for PBXNativeTarget "_idx_shader_util_209E4ED9_ios_min11.0" */; + buildPhases = ( + 3E7AC1A60000000000000025 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + ); + name = _idx_shader_util_209E4ED9_ios_min11.0; + productName = _idx_shader_util_209E4ED9_ios_min11.0; + productReference = 8F62469EB31F330C00000000 /* lib_idx_shader_util_209E4ED9_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B9F4D779E200000000 /* _idx_FaceMeshGPULibrary_61E6B091_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F58394EFF100000000 /* Build configuration list for PBXNativeTarget "_idx_FaceMeshGPULibrary_61E6B091_ios_min11.0" */; + buildPhases = ( + 3E7AC1A60000000000000000 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + C8719450D2C9CDB900000000 /* PBXTargetDependency */, + C87194500EBED90100000000 /* PBXTargetDependency */, + ); + name = _idx_FaceMeshGPULibrary_61E6B091_ios_min11.0; + productName = _idx_FaceMeshGPULibrary_61E6B091_ios_min11.0; + productReference = 8F62469E9FCBB85800000000 /* lib_idx_FaceMeshGPULibrary_61E6B091_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B9F5035E2400000000 /* _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F5D8B7B51300000000 /* Build configuration list for PBXNativeTarget "_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min11.0" */; + buildPhases = ( + 3E7AC1A60000000000000031 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + ); + name = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min11.0; + productName = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min11.0; + productReference = 8F62469E9713725000000000 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + D50916B9F55B29BE00000000 /* mediapipe-render-module-beauty-ios-OlaFaceUnityLibrary */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F5D2B0183C00000000 /* Build configuration list for PBXNativeTarget "mediapipe-render-module-beauty-ios-OlaFaceUnityLibrary" */; + buildPhases = ( + 6FB44517DF15FC4C00000000 /* build //mediapipe/render/module/beauty/ios:OlaFaceUnityLibrary */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, ); name = "mediapipe-render-module-beauty-ios-OlaFaceUnityLibrary"; productName = "mediapipe-render-module-beauty-ios-OlaFaceUnityLibrary"; - productReference = AED7A97FADE5D13000000000 /* libmediapipe-render-module-beauty-ios-OlaFaceUnityLibrary.a */; + productReference = 8F62469E7D01462600000000 /* libmediapipe-render-module-beauty-ios-OlaFaceUnityLibrary.a */; productType = "com.apple.product-type.library.static"; }; - D807E501C7D8DFDE00000000 /* _idx_max_unpooling_max_pool_argmax_92E156D6_ios_min11.0 */ = { + D50916B9FB58229A00000000 /* _idx_mediapipe_framework_ios_596FA5D1_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = FA986D99BA5925E000000000 /* Build configuration list for PBXNativeTarget "_idx_max_unpooling_max_pool_argmax_92E156D6_ios_min11.0" */; + buildConfigurationList = D31CF1F567FA510300000000 /* Build configuration list for PBXNativeTarget "_idx_mediapipe_framework_ios_596FA5D1_ios_min11.0" */; buildPhases = ( - 20199D1C0000000000000031 /* Sources */, + 3E7AC1A60000000000000019 /* Sources */, ); buildRules = ( ); dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, + C8719450B67384D100000000 /* PBXTargetDependency */, + C8719450BCE0083900000000 /* PBXTargetDependency */, + C87194500A556C3100000000 /* PBXTargetDependency */, + C8719450CB8F507D00000000 /* PBXTargetDependency */, + C871945080FCD45900000000 /* PBXTargetDependency */, + C871945079337D3300000000 /* PBXTargetDependency */, ); - name = _idx_max_unpooling_max_pool_argmax_92E156D6_ios_min11.0; - productName = _idx_max_unpooling_max_pool_argmax_92E156D6_ios_min11.0; - productReference = AED7A97FC56C6E9000000000 /* lib_idx_max_unpooling_max_pool_argmax_92E156D6_ios_min11.0.a */; + name = _idx_mediapipe_framework_ios_596FA5D1_ios_min11.0; + productName = _idx_mediapipe_framework_ios_596FA5D1_ios_min11.0; + productReference = 8F62469E2B9C383A00000000 /* lib_idx_mediapipe_framework_ios_596FA5D1_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - D807E501D05A039A00000000 /* _idx_resource_util_B6FA1F0B_ios_min15.5 */ = { + D50916B9FD5CA03000000000 /* _idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = FA986D99B15CAA1600000000 /* Build configuration list for PBXNativeTarget "_idx_resource_util_B6FA1F0B_ios_min15.5" */; + buildConfigurationList = D31CF1F5770790E400000000 /* Build configuration list for PBXNativeTarget "_idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min15.5" */; buildPhases = ( - 20199D1C0000000000000047 /* Sources */, + 3E7AC1A60000000000000014 /* Sources */, ); buildRules = ( ); dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, + C8719450B67384D100000000 /* PBXTargetDependency */, ); - name = _idx_resource_util_B6FA1F0B_ios_min15.5; - productName = _idx_resource_util_B6FA1F0B_ios_min15.5; - productReference = AED7A97F48DBF45200000000 /* lib_idx_resource_util_B6FA1F0B_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E501D40A970600000000 /* _idx_pixel_buffer_pool_util_1B0D8C74_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D99A6B30FDC00000000 /* Build configuration list for PBXNativeTarget "_idx_pixel_buffer_pool_util_1B0D8C74_ios_min15.5" */; - buildPhases = ( - 20199D1C0000000000000010 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - EC2CE7DAF8F8F01D00000000 /* PBXTargetDependency */, - ); - name = _idx_pixel_buffer_pool_util_1B0D8C74_ios_min15.5; - productName = _idx_pixel_buffer_pool_util_1B0D8C74_ios_min15.5; - productReference = AED7A97FAD72A5DA00000000 /* lib_idx_pixel_buffer_pool_util_1B0D8C74_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E501D5C6ED8200000000 /* _idx_image_properties_calculator_gpu_service_6BF370A2_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D99000E817F00000000 /* Build configuration list for PBXNativeTarget "_idx_image_properties_calculator_gpu_service_6BF370A2_ios_min15.5" */; - buildPhases = ( - 20199D1C000000000000002B /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - EC2CE7DA60A115C900000000 /* PBXTargetDependency */, - ); - name = _idx_image_properties_calculator_gpu_service_6BF370A2_ios_min15.5; - productName = _idx_image_properties_calculator_gpu_service_6BF370A2_ios_min15.5; - productReference = AED7A97FA843B95C00000000 /* lib_idx_image_properties_calculator_gpu_service_6BF370A2_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E501D625937400000000 /* _idx_inference_calculator_interface_inference_calculator_cpu_AEFE6570_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D993750B25F00000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_interface_inference_calculator_cpu_AEFE6570_ios_min11.0" */; - buildPhases = ( - 20199D1C0000000000000042 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - EC2CE7DA462EFBA300000000 /* PBXTargetDependency */, - EC2CE7DA06BDEB2B00000000 /* PBXTargetDependency */, - ); - name = _idx_inference_calculator_interface_inference_calculator_cpu_AEFE6570_ios_min11.0; - productName = _idx_inference_calculator_interface_inference_calculator_cpu_AEFE6570_ios_min11.0; - productReference = AED7A97F87A2EB9600000000 /* lib_idx_inference_calculator_interface_inference_calculator_cpu_AEFE6570_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E501D971168E00000000 /* _idx_olamodule_common_library_4A2D4D8A_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D997FA4A65900000000 /* Build configuration list for PBXNativeTarget "_idx_olamodule_common_library_4A2D4D8A_ios_min15.5" */; - buildPhases = ( - 20199D1C000000000000000C /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - EC2CE7DA71C7DBE500000000 /* PBXTargetDependency */, - EC2CE7DAD40A970700000000 /* PBXTargetDependency */, - EC2CE7DA60A115C900000000 /* PBXTargetDependency */, - EC2CE7DAF8F8F01D00000000 /* PBXTargetDependency */, - EC2CE7DA84D8D44100000000 /* PBXTargetDependency */, - ); - name = _idx_olamodule_common_library_4A2D4D8A_ios_min15.5; - productName = _idx_olamodule_common_library_4A2D4D8A_ios_min15.5; - productReference = AED7A97F09DE828200000000 /* lib_idx_olamodule_common_library_4A2D4D8A_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E501D9E967BE00000000 /* _idx_annotation_renderer_BE836363_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D9936EFDCB600000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_renderer_BE836363_ios_min15.5" */; - buildPhases = ( - 20199D1C0000000000000029 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - ); - name = _idx_annotation_renderer_BE836363_ios_min15.5; - productName = _idx_annotation_renderer_BE836363_ios_min15.5; - productReference = AED7A97F569BAB1800000000 /* lib_idx_annotation_renderer_BE836363_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E501E12D6E0E00000000 /* _idx_gl_simple_shaders_6A91D77D_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D9929F8455500000000 /* Build configuration list for PBXNativeTarget "_idx_gl_simple_shaders_6A91D77D_ios_min11.0" */; - buildPhases = ( - 20199D1C0000000000000025 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - ); - name = _idx_gl_simple_shaders_6A91D77D_ios_min11.0; - productName = _idx_gl_simple_shaders_6A91D77D_ios_min11.0; - productReference = AED7A97F321D0D7800000000 /* lib_idx_gl_simple_shaders_6A91D77D_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E501E1D70D7A00000000 /* _idx_tflite_model_calculator_end_loop_calculator_6A228ACC_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D9984FD43B400000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_calculator_end_loop_calculator_6A228ACC_ios_min11.0" */; - buildPhases = ( - 20199D1C0000000000000058 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - ); - name = _idx_tflite_model_calculator_end_loop_calculator_6A228ACC_ios_min11.0; - productName = _idx_tflite_model_calculator_end_loop_calculator_6A228ACC_ios_min11.0; - productReference = AED7A97FCC9C8CEA00000000 /* lib_idx_tflite_model_calculator_end_loop_calculator_6A228ACC_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E501E1EABCB600000000 /* _idx_inference_calculator_interface_inference_calculator_cpu_AEFE6570_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D99A0A46A3400000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_interface_inference_calculator_cpu_AEFE6570_ios_min15.5" */; - buildPhases = ( - 20199D1C0000000000000045 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - EC2CE7DA84D8D44100000000 /* PBXTargetDependency */, - EC2CE7DA7B881ECB00000000 /* PBXTargetDependency */, - ); - name = _idx_inference_calculator_interface_inference_calculator_cpu_AEFE6570_ios_min15.5; - productName = _idx_inference_calculator_interface_inference_calculator_cpu_AEFE6570_ios_min15.5; - productReference = AED7A97F8F4205CE00000000 /* lib_idx_inference_calculator_interface_inference_calculator_cpu_AEFE6570_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E501E4CCBCC400000000 /* _idx_split_vector_calculator_6654799A_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D9987A36DA900000000 /* Build configuration list for PBXNativeTarget "_idx_split_vector_calculator_6654799A_ios_min11.0" */; - buildPhases = ( - 20199D1C0000000000000050 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - EC2CE7DA62D4D60D00000000 /* PBXTargetDependency */, - ); - name = _idx_split_vector_calculator_6654799A_ios_min11.0; - productName = _idx_split_vector_calculator_6654799A_ios_min11.0; - productReference = AED7A97FAAE0F57200000000 /* lib_idx_split_vector_calculator_6654799A_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E501E67C2A1A00000000 /* _idx_ref_gpuimagemath_gpuimageutil_8BF43A5D_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D992A5CB20B00000000 /* Build configuration list for PBXNativeTarget "_idx_ref_gpuimagemath_gpuimageutil_8BF43A5D_ios_min11.0" */; - buildPhases = ( - 20199D1C0000000000000009 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - ); - name = _idx_ref_gpuimagemath_gpuimageutil_8BF43A5D_ios_min11.0; - productName = _idx_ref_gpuimagemath_gpuimageutil_8BF43A5D_ios_min11.0; - productReference = AED7A97FDCFC782600000000 /* lib_idx_ref_gpuimagemath_gpuimageutil_8BF43A5D_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E501F07E016E00000000 /* _idx_olamodule_common_library_4A2D4D8A_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D99C847318E00000000 /* Build configuration list for PBXNativeTarget "_idx_olamodule_common_library_4A2D4D8A_ios_min11.0" */; - buildPhases = ( - 20199D1C0000000000000001 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - EC2CE7DA4EF47AD100000000 /* PBXTargetDependency */, - EC2CE7DA6999113F00000000 /* PBXTargetDependency */, - EC2CE7DA462EFBA300000000 /* PBXTargetDependency */, - EC2CE7DAFE323FCF00000000 /* PBXTargetDependency */, - EC2CE7DA7073403D00000000 /* PBXTargetDependency */, - ); - name = _idx_olamodule_common_library_4A2D4D8A_ios_min11.0; - productName = _idx_olamodule_common_library_4A2D4D8A_ios_min11.0; - productReference = AED7A97FF06E61C200000000 /* lib_idx_olamodule_common_library_4A2D4D8A_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E501F3D581C800000000 /* _idx_math_3043B97F_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D993F54474500000000 /* Build configuration list for PBXNativeTarget "_idx_math_3043B97F_ios_min15.5" */; - buildPhases = ( - 20199D1C000000000000000F /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - ); - name = _idx_math_3043B97F_ios_min15.5; - productName = _idx_math_3043B97F_ios_min15.5; - productReference = AED7A97F6A2EDEA000000000 /* lib_idx_math_3043B97F_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E501F509D76C00000000 /* _idx_detection_projection_calculator_9B95E740_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D99A08B5FEF00000000 /* Build configuration list for PBXNativeTarget "_idx_detection_projection_calculator_9B95E740_ios_min11.0" */; - buildPhases = ( - 20199D1C0000000000000038 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - ); - name = _idx_detection_projection_calculator_9B95E740_ios_min11.0; - productName = _idx_detection_projection_calculator_9B95E740_ios_min11.0; - productReference = AED7A97F9199F03800000000 /* lib_idx_detection_projection_calculator_9B95E740_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E501F57C17F000000000 /* _idx_FaceMeshGPULibrary_2BF20B88_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D993D661B0800000000 /* Build configuration list for PBXNativeTarget "_idx_FaceMeshGPULibrary_2BF20B88_ios_min15.5" */; - buildPhases = ( - 20199D1C000000000000000B /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - EC2CE7DAD971168F00000000 /* PBXTargetDependency */, - ); - name = _idx_FaceMeshGPULibrary_2BF20B88_ios_min15.5; - productName = _idx_FaceMeshGPULibrary_2BF20B88_ios_min15.5; - productReference = AED7A97FBEE6626C00000000 /* lib_idx_FaceMeshGPULibrary_2BF20B88_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E501F70D126A00000000 /* _idx_MPPMetalHelper_7397E6A5_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D9954F5EA3D00000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalHelper_7397E6A5_ios_min11.0" */; - buildPhases = ( - 20199D1C0000000000000018 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - EC2CE7DABBDDDAB900000000 /* PBXTargetDependency */, - ); - name = _idx_MPPMetalHelper_7397E6A5_ios_min11.0; - productName = _idx_MPPMetalHelper_7397E6A5_ios_min11.0; - productReference = AED7A97F8676234E00000000 /* lib_idx_MPPMetalHelper_7397E6A5_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E501F727D6E200000000 /* _idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_7F9F05C6_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D9965A4196200000000 /* Build configuration list for PBXNativeTarget "_idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_7F9F05C6_ios_min11.0" */; - buildPhases = ( - 20199D1C000000000000003C /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - ); - name = _idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_7F9F05C6_ios_min11.0; - productName = _idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_7F9F05C6_ios_min11.0; - productReference = AED7A97F511EA79600000000 /* lib_idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_7F9F05C6_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E501F8F8F01C00000000 /* _idx_util_28409609_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D99D3524F2C00000000 /* Build configuration list for PBXNativeTarget "_idx_util_28409609_ios_min15.5" */; - buildPhases = ( - 20199D1C0000000000000011 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - ); - name = _idx_util_28409609_ios_min15.5; - productName = _idx_util_28409609_ios_min15.5; - productReference = AED7A97F0F5DFEC400000000 /* lib_idx_util_28409609_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D807E501FE323FCE00000000 /* _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_26C42D3D_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = FA986D99940D2EC900000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_26C42D3D_ios_min11.0" */; - buildPhases = ( - 20199D1C0000000000000005 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */, - EC2CE7DA126D7CC700000000 /* PBXTargetDependency */, - EC2CE7DA4EF47AD100000000 /* PBXTargetDependency */, - EC2CE7DA126D7CC700000000 /* PBXTargetDependency */, - EC2CE7DABA73597300000000 /* PBXTargetDependency */, - ); - name = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_26C42D3D_ios_min11.0; - productName = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_26C42D3D_ios_min11.0; - productReference = AED7A97F3743224400000000 /* lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_26C42D3D_ios_min11.0.a */; + name = _idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min15.5; + productName = _idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min15.5; + productReference = 8F62469E6562E89600000000 /* lib_idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; /* End PBXNativeTarget section */ /* Begin PBXProject section */ - E8D406AA11D4451E00000000 /* Project object */ = { + 22488B02D730B92B00000000 /* Project object */ = { isa = PBXProject; attributes = { LastSwiftUpdateCheck = 0710; LastUpgradeCheck = 1000; }; - buildConfigurationList = FA986D997EA5083300000000 /* Build configuration list for PBXProject "OlaFaceUnity" */; + buildConfigurationList = D31CF1F5704127CA00000000 /* Build configuration list for PBXProject "OlaFaceUnity" */; compatibilityVersion = "Xcode 3.2"; developmentRegion = English; hasScannedForEncodings = 0; knownRegions = ( - English, en, ); - mainGroup = 1A7E690DF79A8EE400000000 /* mainGroup */; - projectDirPath = ""; - projectRoot = ""; + mainGroup = B6073D51EFAF6E4700000000 /* mainGroup */; targets = ( - D807E501965E9F0C00000000 /* OlaFaceUnityFramework */, - B0D91B25B052EDC800000000 /* _bazel_clean_ */, - D807E5016B67FEEC00000000 /* _idx_FaceMeshGPULibrary_2BF20B88_ios_min11.0 */, - D807E501F57C17F000000000 /* _idx_FaceMeshGPULibrary_2BF20B88_ios_min15.5 */, - D807E501680A55C800000000 /* _idx_MPPGraphGPUData_733A9D5A_ios_min11.0 */, - D807E5013F591E2E00000000 /* _idx_MPPGraphGPUData_733A9D5A_ios_min15.5 */, - D807E501F70D126A00000000 /* _idx_MPPMetalHelper_7397E6A5_ios_min11.0 */, - D807E5014C0DA67000000000 /* _idx_MPPMetalHelper_7397E6A5_ios_min15.5 */, - D807E50125CEBB5E00000000 /* _idx_MPPMetalUtil_E63D8158_ios_min11.0 */, - D807E50112A6202400000000 /* _idx_MPPMetalUtil_E63D8158_ios_min15.5 */, - D807E5016335695200000000 /* _idx_OlaFaceUnityLibrary_5CE49B93_ios_min11.0 */, - D807E5015DAF3A1600000000 /* _idx_OlaFaceUnityLibrary_5CE49B93_ios_min15.5 */, - D807E501970493FA00000000 /* _idx_annotation_overlay_calculator_7B50CB48_ios_min11.0 */, - D807E50165CC282600000000 /* _idx_annotation_overlay_calculator_7B50CB48_ios_min15.5 */, - D807E5010AA81EC200000000 /* _idx_annotation_renderer_BE836363_ios_min11.0 */, - D807E501D9E967BE00000000 /* _idx_annotation_renderer_BE836363_ios_min15.5 */, - D807E5010700315200000000 /* _idx_begin_loop_calculator_FEDA75EA_ios_min11.0 */, - D807E5011780241600000000 /* _idx_begin_loop_calculator_FEDA75EA_ios_min15.5 */, - D807E501181DA32A00000000 /* _idx_clip_vector_size_calculator_02FA2733_ios_min11.0 */, - D807E5013476F00000000000 /* _idx_clip_vector_size_calculator_02FA2733_ios_min15.5 */, - D807E5017073403C00000000 /* _idx_core_core-ios_4EDC2AF0_ios_min11.0 */, - D807E50171C7DBE400000000 /* _idx_core_core-ios_4EDC2AF0_ios_min15.5 */, - D807E50133E4A23C00000000 /* _idx_cpu_op_resolver_741B9450_ios_min11.0 */, - D807E501107AC04000000000 /* _idx_cpu_op_resolver_741B9450_ios_min15.5 */, - D807E501462EFBA200000000 /* _idx_cpu_util_B64315B8_ios_min11.0 */, - D807E50184D8D44000000000 /* _idx_cpu_util_B64315B8_ios_min15.5 */, - D807E501F509D76C00000000 /* _idx_detection_projection_calculator_9B95E740_ios_min11.0 */, - D807E5014BACA9B800000000 /* _idx_detection_projection_calculator_9B95E740_ios_min15.5 */, - D807E5019537EA2600000000 /* _idx_gl_calculator_helper_D8986C65_ios_min11.0 */, - D807E50198D05C4A00000000 /* _idx_gl_calculator_helper_D8986C65_ios_min15.5 */, - D807E501E12D6E0E00000000 /* _idx_gl_simple_shaders_6A91D77D_ios_min11.0 */, - D807E50176D9570200000000 /* _idx_gl_simple_shaders_6A91D77D_ios_min15.5 */, - D807E501BA73597200000000 /* _idx_gpu_buffer_multi_pool_gl_context_4D0E07B8_ios_min11.0 */, - D807E501BE53424A00000000 /* _idx_gpu_buffer_multi_pool_gl_context_4D0E07B8_ios_min15.5 */, - D807E501FE323FCE00000000 /* _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_26C42D3D_ios_min11.0 */, - D807E50160A115C800000000 /* _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_26C42D3D_ios_min15.5 */, - D807E501126D7CC600000000 /* _idx_gpu_buffer_storage_gpu_buffer_format_BA46520A_ios_min11.0 */, - D807E5014594765800000000 /* _idx_gpu_buffer_storage_gpu_buffer_format_BA46520A_ios_min15.5 */, - D807E50137FF534E00000000 /* _idx_image_properties_calculator_gpu_service_6BF370A2_ios_min11.0 */, - D807E501D5C6ED8200000000 /* _idx_image_properties_calculator_gpu_service_6BF370A2_ios_min15.5 */, - D807E501B392E15C00000000 /* _idx_image_to_tensor_calculator_C3DB5E1E_ios_min11.0 */, - D807E501A2DE10FC00000000 /* _idx_image_to_tensor_calculator_C3DB5E1E_ios_min15.5 */, - D807E50125AB3D8C00000000 /* _idx_image_to_tensor_converter_metal_9AA64D0A_ios_min11.0 */, - D807E501B5CD309A00000000 /* _idx_image_to_tensor_converter_metal_9AA64D0A_ios_min15.5 */, - D807E50145A4DD6400000000 /* _idx_image_to_tensor_converter_opencv_F40C896E_ios_min11.0 */, - D807E5015F558F1C00000000 /* _idx_image_to_tensor_converter_opencv_F40C896E_ios_min15.5 */, - D807E501D625937400000000 /* _idx_inference_calculator_interface_inference_calculator_cpu_AEFE6570_ios_min11.0 */, - D807E501E1EABCB600000000 /* _idx_inference_calculator_interface_inference_calculator_cpu_AEFE6570_ios_min15.5 */, - D807E501B9EA5DEE00000000 /* _idx_inference_calculator_metal_712F45E9_ios_min11.0 */, - D807E501A00763E200000000 /* _idx_inference_calculator_metal_712F45E9_ios_min15.5 */, - D807E5012B54506200000000 /* _idx_math_3043B97F_ios_min11.0 */, - D807E501F3D581C800000000 /* _idx_math_3043B97F_ios_min15.5 */, - D807E501C7D8DFDE00000000 /* _idx_max_unpooling_max_pool_argmax_92E156D6_ios_min11.0 */, - D807E5012EDC5D5A00000000 /* _idx_max_unpooling_max_pool_argmax_92E156D6_ios_min15.5 */, - D807E501BBDDDAB800000000 /* _idx_mediapipe_framework_ios_E5983FAB_ios_min11.0 */, - D807E5014843522C00000000 /* _idx_mediapipe_framework_ios_E5983FAB_ios_min15.5 */, - D807E5016749B1D400000000 /* _idx_non_max_suppression_calculator_EA803631_ios_min11.0 */, - D807E5011BBEB05200000000 /* _idx_non_max_suppression_calculator_EA803631_ios_min15.5 */, - D807E501F07E016E00000000 /* _idx_olamodule_common_library_4A2D4D8A_ios_min11.0 */, - D807E501D971168E00000000 /* _idx_olamodule_common_library_4A2D4D8A_ios_min15.5 */, - D807E5013C33B88E00000000 /* _idx_op_resolver_E390FDC7_ios_min11.0 */, - D807E5015EC7447A00000000 /* _idx_op_resolver_E390FDC7_ios_min15.5 */, - D807E5016999113E00000000 /* _idx_pixel_buffer_pool_util_1B0D8C74_ios_min11.0 */, - D807E501D40A970600000000 /* _idx_pixel_buffer_pool_util_1B0D8C74_ios_min15.5 */, - D807E5015F25395000000000 /* _idx_previous_loopback_calculator_header_util_D9AEB78A_ios_min11.0 */, - D807E501652D07FE00000000 /* _idx_previous_loopback_calculator_header_util_D9AEB78A_ios_min15.5 */, - D807E501F727D6E200000000 /* _idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_7F9F05C6_ios_min11.0 */, - D807E50198631CBE00000000 /* _idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_7F9F05C6_ios_min15.5 */, - D807E501E67C2A1A00000000 /* _idx_ref_gpuimagemath_gpuimageutil_8BF43A5D_ios_min11.0 */, - D807E5010C83C67C00000000 /* _idx_ref_gpuimagemath_gpuimageutil_8BF43A5D_ios_min15.5 */, - D807E50162D4D60C00000000 /* _idx_resource_util_B6FA1F0B_ios_min11.0 */, - D807E501D05A039A00000000 /* _idx_resource_util_B6FA1F0B_ios_min15.5 */, - D807E5016B9DD04400000000 /* _idx_shader_util_F77AE4F3_ios_min11.0 */, - D807E501BFC8082200000000 /* _idx_shader_util_F77AE4F3_ios_min15.5 */, - D807E501E4CCBCC400000000 /* _idx_split_vector_calculator_6654799A_ios_min11.0 */, - D807E50153AD96EA00000000 /* _idx_split_vector_calculator_6654799A_ios_min15.5 */, - D807E5016D63274000000000 /* _idx_tensors_to_detections_calculator_888E512F_ios_min11.0 */, - D807E50123AC318600000000 /* _idx_tensors_to_detections_calculator_888E512F_ios_min15.5 */, - D807E501C07677A200000000 /* _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_7ED8D1B5_ios_min11.0 */, - D807E5015C0B74AE00000000 /* _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_7ED8D1B5_ios_min15.5 */, - D807E5015AF9572600000000 /* _idx_tflite_custom_op_resolver_calculator_042597A8_ios_min11.0 */, - D807E50113B9FA2E00000000 /* _idx_tflite_custom_op_resolver_calculator_042597A8_ios_min15.5 */, - D807E501E1D70D7A00000000 /* _idx_tflite_model_calculator_end_loop_calculator_6A228ACC_ios_min11.0 */, - D807E50134002EA400000000 /* _idx_tflite_model_calculator_end_loop_calculator_6A228ACC_ios_min15.5 */, - D807E50106BDEB2A00000000 /* _idx_tflite_model_loader_F900857E_ios_min11.0 */, - D807E5017B881ECA00000000 /* _idx_tflite_model_loader_F900857E_ios_min15.5 */, - D807E501A20D2A1200000000 /* _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_A15F304E_ios_min11.0 */, - D807E5017039FC3C00000000 /* _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_A15F304E_ios_min15.5 */, - D807E5014EABA32800000000 /* _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_AB0D0716_ios_min11.0 */, - D807E5012CDA58B600000000 /* _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_AB0D0716_ios_min15.5 */, - D807E50146D4E80800000000 /* _idx_transpose_conv_bias_207EFBC1_ios_min11.0 */, - D807E50128DF669000000000 /* _idx_transpose_conv_bias_207EFBC1_ios_min15.5 */, - D807E5014EF47AD000000000 /* _idx_util_28409609_ios_min11.0 */, - D807E501F8F8F01C00000000 /* _idx_util_28409609_ios_min15.5 */, - D807E501C284C0CA00000000 /* mediapipe-render-module-beauty-ios-OlaFaceUnityLibrary */, + D50916B940C1AF2200000000 /* OlaFaceUnityFramework */, + 281DB351B67384D000000000 /* _bazel_clean_ */, + D50916B9F4D779E200000000 /* _idx_FaceMeshGPULibrary_61E6B091_ios_min11.0 */, + D50916B947A74E8C00000000 /* _idx_FaceMeshGPULibrary_61E6B091_ios_min15.5 */, + D50916B979337D3200000000 /* _idx_MPPGraphGPUData_DE328030_ios_min11.0 */, + D50916B9984088FC00000000 /* _idx_MPPGraphGPUData_DE328030_ios_min15.5 */, + D50916B94C962DEC00000000 /* _idx_MPPMetalHelper_8A6739B5_ios_min11.0 */, + D50916B98A94473800000000 /* _idx_MPPMetalHelper_8A6739B5_ios_min15.5 */, + D50916B97E562BDE00000000 /* _idx_MPPMetalUtil_622319D3_ios_min11.0 */, + D50916B9A5AC836400000000 /* _idx_MPPMetalUtil_622319D3_ios_min15.5 */, + D50916B9C6E1DE5800000000 /* _idx_OlaFaceUnityLibrary_63B2D14F_ios_min11.0 */, + D50916B9C90C1D2600000000 /* _idx_OlaFaceUnityLibrary_63B2D14F_ios_min15.5 */, + D50916B93DC5F44400000000 /* _idx_annotation_overlay_calculator_7772C341_ios_min11.0 */, + D50916B9B1E8A01A00000000 /* _idx_annotation_overlay_calculator_7772C341_ios_min15.5 */, + D50916B9ACE90FE200000000 /* _idx_annotation_renderer_1DCBFDF7_ios_min11.0 */, + D50916B94A6C65DE00000000 /* _idx_annotation_renderer_1DCBFDF7_ios_min15.5 */, + D50916B966C0283200000000 /* _idx_begin_loop_calculator_55C0335F_ios_min11.0 */, + D50916B925AA7A6000000000 /* _idx_begin_loop_calculator_55C0335F_ios_min15.5 */, + D50916B97A8A9E1600000000 /* _idx_clip_vector_size_calculator_B472A55B_ios_min11.0 */, + D50916B9B897142A00000000 /* _idx_clip_vector_size_calculator_B472A55B_ios_min15.5 */, + D50916B90EBED90000000000 /* _idx_core_core-ios_731E135C_ios_min11.0 */, + D50916B95924467E00000000 /* _idx_core_core-ios_731E135C_ios_min15.5 */, + D50916B932A4BF4A00000000 /* _idx_cpu_op_resolver_E63A3714_ios_min11.0 */, + D50916B932AD902000000000 /* _idx_cpu_op_resolver_E63A3714_ios_min15.5 */, + D50916B9BCE0083800000000 /* _idx_cpu_util_D57AACFF_ios_min11.0 */, + D50916B92FCF8C3E00000000 /* _idx_cpu_util_D57AACFF_ios_min15.5 */, + D50916B97245140600000000 /* _idx_detection_projection_calculator_07107D71_ios_min11.0 */, + D50916B95728CE7C00000000 /* _idx_detection_projection_calculator_07107D71_ios_min15.5 */, + D50916B939FF367E00000000 /* _idx_gl_calculator_helper_6AE62265_ios_min11.0 */, + D50916B991B35B4600000000 /* _idx_gl_calculator_helper_6AE62265_ios_min15.5 */, + D50916B995AF928400000000 /* _idx_gl_simple_shaders_2CB9CEAD_ios_min11.0 */, + D50916B91918237600000000 /* _idx_gl_simple_shaders_2CB9CEAD_ios_min15.5 */, + D50916B960D0021C00000000 /* _idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min11.0 */, + D50916B91AFB53CA00000000 /* _idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min15.5 */, + D50916B9CB8F507C00000000 /* _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min11.0 */, + D50916B9C4F8B64000000000 /* _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min15.5 */, + D50916B9BAB5C57E00000000 /* _idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min11.0 */, + D50916B9395CFE5000000000 /* _idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min15.5 */, + D50916B99D198C3600000000 /* _idx_image_properties_calculator_gpu_service_941BB6CA_ios_min11.0 */, + D50916B917CF694E00000000 /* _idx_image_properties_calculator_gpu_service_941BB6CA_ios_min15.5 */, + D50916B91B5AB1A200000000 /* _idx_image_to_tensor_calculator_77E4634D_ios_min11.0 */, + D50916B91B6277A200000000 /* _idx_image_to_tensor_calculator_77E4634D_ios_min15.5 */, + D50916B955A38FE400000000 /* _idx_image_to_tensor_converter_metal_A1DB3550_ios_min11.0 */, + D50916B995D8B8F800000000 /* _idx_image_to_tensor_converter_metal_A1DB3550_ios_min15.5 */, + D50916B9DCA2423600000000 /* _idx_image_to_tensor_converter_opencv_1FC75D94_ios_min11.0 */, + D50916B9B784310600000000 /* _idx_image_to_tensor_converter_opencv_1FC75D94_ios_min15.5 */, + D50916B914B7442A00000000 /* _idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min11.0 */, + D50916B9D3EB570800000000 /* _idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min15.5 */, + D50916B91241B0E400000000 /* _idx_inference_calculator_metal_65084AC7_ios_min11.0 */, + D50916B94683E49200000000 /* _idx_inference_calculator_metal_65084AC7_ios_min15.5 */, + D50916B904A520C200000000 /* _idx_math_661952D5_ios_min11.0 */, + D50916B9797718E600000000 /* _idx_math_661952D5_ios_min15.5 */, + D50916B9C415A01C00000000 /* _idx_max_unpooling_max_pool_argmax_09627F19_ios_min11.0 */, + D50916B9D320929E00000000 /* _idx_max_unpooling_max_pool_argmax_09627F19_ios_min15.5 */, + D50916B9FB58229A00000000 /* _idx_mediapipe_framework_ios_596FA5D1_ios_min11.0 */, + D50916B9CF5F5EE600000000 /* _idx_mediapipe_framework_ios_596FA5D1_ios_min15.5 */, + D50916B9EAE9058600000000 /* _idx_non_max_suppression_calculator_E0C32C58_ios_min11.0 */, + D50916B9C9AA16CE00000000 /* _idx_non_max_suppression_calculator_E0C32C58_ios_min15.5 */, + D50916B9D2C9CDB800000000 /* _idx_olamodule_common_library_9ADAC3A9_ios_min11.0 */, + D50916B9B474037C00000000 /* _idx_olamodule_common_library_9ADAC3A9_ios_min15.5 */, + D50916B955AF4C6400000000 /* _idx_op_resolver_29CCF89E_ios_min11.0 */, + D50916B9D2A53B2000000000 /* _idx_op_resolver_29CCF89E_ios_min15.5 */, + D50916B980FCD45800000000 /* _idx_pixel_buffer_pool_util_C139F8B5_ios_min11.0 */, + D50916B9507BECC600000000 /* _idx_pixel_buffer_pool_util_C139F8B5_ios_min15.5 */, + D50916B98AC3922A00000000 /* _idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min11.0 */, + D50916B94835E8D400000000 /* _idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min15.5 */, + D50916B916C7A06E00000000 /* _idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min11.0 */, + D50916B95D80A99A00000000 /* _idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min15.5 */, + D50916B96D62510400000000 /* _idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min11.0 */, + D50916B9FD5CA03000000000 /* _idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min15.5 */, + D50916B98C82B9EE00000000 /* _idx_resource_util_0C14DDDC_ios_min11.0 */, + D50916B9BAEEE68600000000 /* _idx_resource_util_0C14DDDC_ios_min15.5 */, + D50916B9EEDCEF1800000000 /* _idx_shader_util_209E4ED9_ios_min11.0 */, + D50916B9EC4DADE200000000 /* _idx_shader_util_209E4ED9_ios_min15.5 */, + D50916B93C22A8D400000000 /* _idx_split_vector_calculator_73890910_ios_min11.0 */, + D50916B94E485F5400000000 /* _idx_split_vector_calculator_73890910_ios_min15.5 */, + D50916B90BC1B1C600000000 /* _idx_tensors_to_detections_calculator_B4C99DEA_ios_min11.0 */, + D50916B9E673FEC600000000 /* _idx_tensors_to_detections_calculator_B4C99DEA_ios_min15.5 */, + D50916B9EE60A18000000000 /* _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min11.0 */, + D50916B9C0CFCF1600000000 /* _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min15.5 */, + D50916B9728267EC00000000 /* _idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min11.0 */, + D50916B9D093389A00000000 /* _idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min15.5 */, + D50916B99B71962800000000 /* _idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min11.0 */, + D50916B97A50F2DE00000000 /* _idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min15.5 */, + D50916B90B74D91800000000 /* _idx_tflite_model_loader_6F62D289_ios_min11.0 */, + D50916B9E5D2ED5600000000 /* _idx_tflite_model_loader_6F62D289_ios_min15.5 */, + D50916B9814C45F000000000 /* _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min11.0 */, + D50916B95B3B8F3E00000000 /* _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min15.5 */, + D50916B9F5035E2400000000 /* _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min11.0 */, + D50916B995D3064000000000 /* _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min15.5 */, + D50916B952EE187C00000000 /* _idx_transpose_conv_bias_94247583_ios_min11.0 */, + D50916B9600148FA00000000 /* _idx_transpose_conv_bias_94247583_ios_min15.5 */, + D50916B90A556C3000000000 /* _idx_util_66001351_ios_min11.0 */, + D50916B992DAA70A00000000 /* _idx_util_66001351_ios_min15.5 */, + D50916B9F55B29BE00000000 /* mediapipe-render-module-beauty-ios-OlaFaceUnityLibrary */, ); }; /* End PBXProject section */ /* Begin PBXShellScriptBuildPhase section */ - 72D56B2CDD3D6EF200000000 /* build //mediapipe/render/module/beauty/ios:OlaFaceUnityFramework */ = { + 6FB445172B7B339300000000 /* build //mediapipe/render/module/beauty/ios:OlaFaceUnityFramework */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 0; files = ( @@ -3377,8 +3386,9 @@ runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/bash; shellScript = "set -e\ncd \"${SRCROOT}/../../../../..\"\nexec \"${PROJECT_FILE_PATH}/.tulsi/Scripts/bazel_build.py\" //mediapipe/render/module/beauty/ios:OlaFaceUnityFramework --bazel \"/opt/homebrew/Cellar/bazelisk/1.12.0/bin/bazelisk\" --bazel_bin_path \"bazel-bin\" --verbose "; + showEnvVarsInLog = 1; }; - 72D56B2CFA6D815F00000000 /* build //mediapipe/render/module/beauty/ios:OlaFaceUnityLibrary */ = { + 6FB44517DF15FC4C00000000 /* build //mediapipe/render/module/beauty/ios:OlaFaceUnityLibrary */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 0; files = ( @@ -3392,2527 +3402,1148 @@ runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/bash; shellScript = "set -e\ncd \"${SRCROOT}/../../../../..\"\nexec \"${PROJECT_FILE_PATH}/.tulsi/Scripts/bazel_build.py\" //mediapipe/render/module/beauty/ios:OlaFaceUnityLibrary --bazel \"/opt/homebrew/Cellar/bazelisk/1.12.0/bin/bazelisk\" --bazel_bin_path \"bazel-bin\" --verbose "; + showEnvVarsInLog = 1; }; /* End PBXShellScriptBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - 20199D1C0000000000000000 /* Sources */ = { + 3E7AC1A60000000000000000 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C164350B780B00000000 /* face_mesh_module.cpp in Sources */, + 49B7A4FC4CC6C91400000000 /* face_mesh_module.cc in beauty */, + 49B7A4FC8563DF9500000000 /* face_mesh_beauty_render.cc in beauty */, + 49B7A4FCA59EA68600000000 /* face_mesh_module_imp.cc in beauty */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000001 /* Sources */ = { + 3E7AC1A60000000000000001 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C16487DFEA2300000000 /* OlaGraph.cpp in Sources */, + 49B7A4FCB288401C00000000 /* ola_graph.cc in common */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000002 /* Sources */ = { + 3E7AC1A60000000000000002 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C164512859F400000000 /* util.cc in Sources */, + 49B7A4FC4C094F0A00000000 /* util.cc in objc */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000003 /* Sources */ = { + 3E7AC1A60000000000000003 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C1641C1E706800000000 /* pixel_buffer_pool_util.mm in Sources */, + 49B7A4FC489C692A00000000 /* gpu_buffer_storage_cv_pixel_buffer.cc in gpu */, + 49B7A4FCA3E97E1400000000 /* gl_texture_buffer.cc in gpu */, + 49B7A4FCF51362E900000000 /* gl_texture_buffer_pool.cc in gpu */, + 49B7A4FCEA623A4800000000 /* gl_texture_view.cc in gpu */, + 49B7A4FC8EDC082600000000 /* gpu_buffer.cc in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000004 /* Sources */ = { + 3E7AC1A60000000000000004 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C164A54788E300000000 /* cpu_util.cc in Sources */, + 49B7A4FC2F39A2D500000000 /* gpu_buffer_multi_pool.cc in gpu */, + 49B7A4FCD11949C300000000 /* gl_context.cc in gpu */, + 49B7A4FC4AFAD92200000000 /* gl_context_eagl.cc in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000005 /* Sources */ = { + 3E7AC1A60000000000000005 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C164FCDA188900000000 /* gpu_buffer_storage_cv_pixel_buffer.cc in Sources */, - EC43C164F8C96D3D00000000 /* gl_texture_buffer.cc in Sources */, - EC43C164CEAD353700000000 /* gl_texture_buffer_pool.cc in Sources */, - EC43C164216C8D5C00000000 /* gl_texture_view.cc in Sources */, - EC43C16497ED1FC700000000 /* gpu_buffer.cc in Sources */, + 49B7A4FC357DD06500000000 /* pixel_buffer_pool_util.mm in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000006 /* Sources */ = { + 3E7AC1A60000000000000006 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C164AAA2FE7000000000 /* gpu_buffer_storage.cc in Sources */, - EC43C1642E6B486000000000 /* gpu_buffer_format.cc in Sources */, + 49B7A4FC2E9744D600000000 /* gpu_buffer_storage.cc in gpu */, + 49B7A4FC92E2BF3700000000 /* gpu_buffer_format.cc in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000007 /* Sources */ = { + 3E7AC1A60000000000000007 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C164043DD14B00000000 /* gpu_buffer_multi_pool.cc in Sources */, - EC43C1647C7A404400000000 /* gl_context.cc in Sources */, - EC43C164C905FCC400000000 /* gl_context_eagl.cc in Sources */, + 49B7A4FC53F441A800000000 /* cpu_util.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000008 /* Sources */ = { + 3E7AC1A60000000000000008 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C164731BD67000000000 /* FramebufferCache.cpp in Sources */, - EC43C1642A43360700000000 /* Framebuffer.cpp in Sources */, - EC43C16430D1B2CD00000000 /* Target.cpp in Sources */, - EC43C164115CC07300000000 /* Context.cpp in Sources */, - EC43C16446361A7400000000 /* Filter.cpp in Sources */, - EC43C164E8D550C300000000 /* GLProgram.cpp in Sources */, - EC43C1647352B17300000000 /* Source.cpp in Sources */, - EC43C164E04A951600000000 /* SourceImage.cpp in Sources */, - EC43C164815E3DC900000000 /* IOSTarget.cpp in Sources */, - EC43C164F382926900000000 /* SourceCamera.cpp in Sources */, - EC43C164024E437300000000 /* TargetView.cpp in Sources */, - EC43C164FAB2EC1300000000 /* FilterGroup.cpp in Sources */, - EC43C164731BD67000000001 /* FramebufferCache.cpp in Sources */, - EC43C1642A43360700000001 /* Framebuffer.cpp in Sources */, - EC43C16430D1B2CD00000001 /* Target.cpp in Sources */, - EC43C164115CC07300000001 /* Context.cpp in Sources */, - EC43C16446361A7400000001 /* Filter.cpp in Sources */, - EC43C164E8D550C300000001 /* GLProgram.cpp in Sources */, - EC43C1647352B17300000001 /* Source.cpp in Sources */, - EC43C164E04A951600000001 /* SourceImage.cpp in Sources */, - EC43C164815E3DC900000001 /* IOSTarget.cpp in Sources */, - EC43C164F382926900000001 /* SourceCamera.cpp in Sources */, - EC43C164024E437300000001 /* TargetView.cpp in Sources */, - EC43C164FAB2EC1300000001 /* FilterGroup.cpp in Sources */, + 49B7A4FC42538A8300000000 /* FramebufferCache.cpp in core */, + 49B7A4FC5771EFBD00000000 /* Framebuffer.cpp in core */, + 49B7A4FC2E87CC4E00000000 /* Target.cpp in core */, + 49B7A4FC6328969D00000000 /* Context.cpp in core */, + 49B7A4FC9A0C486600000000 /* Filter.cpp in core */, + 49B7A4FCD9FC1F1200000000 /* GLProgram.cpp in core */, + 49B7A4FC403A0ACA00000000 /* Source.cpp in core */, + 49B7A4FC4CCA495100000000 /* SourceImage.cpp in core */, + 49B7A4FCC345270B00000000 /* IOSTarget.cpp in core */, + 49B7A4FCA688677600000000 /* SourceCamera.cpp in core */, + 49B7A4FCC7392BFD00000000 /* TargetView.cpp in core */, + 49B7A4FC36A1BCF500000000 /* FilterGroup.cpp in core */, + 49B7A4FC42538A8300000001 /* FramebufferCache.cpp in core */, + 49B7A4FC5771EFBD00000001 /* Framebuffer.cpp in core */, + 49B7A4FC2E87CC4E00000001 /* Target.cpp in core */, + 49B7A4FC6328969D00000001 /* Context.cpp in core */, + 49B7A4FC9A0C486600000001 /* Filter.cpp in core */, + 49B7A4FCD9FC1F1200000001 /* GLProgram.cpp in core */, + 49B7A4FC403A0ACA00000001 /* Source.cpp in core */, + 49B7A4FC4CCA495100000001 /* SourceImage.cpp in core */, + 49B7A4FCC345270B00000001 /* IOSTarget.cpp in core */, + 49B7A4FCA688677600000001 /* SourceCamera.cpp in core */, + 49B7A4FCC7392BFD00000001 /* TargetView.cpp in core */, + 49B7A4FC36A1BCF500000001 /* FilterGroup.cpp in core */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000009 /* Sources */ = { + 3E7AC1A60000000000000009 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C1648BBC9F7900000000 /* Ref.cpp in Sources */, - EC43C1644373C5BE00000000 /* math.cpp in Sources */, - EC43C164054C67EB00000000 /* GPUImageUtil.cpp in Sources */, + 49B7A4FCDBE5CD1B00000000 /* Ref.cpp in core */, + 49B7A4FC64A7F94D00000000 /* math.cpp in core */, + 49B7A4FC3950B88400000000 /* GPUImageUtil.cpp in core */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C000000000000000A /* Sources */ = { + 3E7AC1A6000000000000000A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C164969C674A00000000 /* mat4.cpp in Sources */, - EC43C164567DD13A00000000 /* math_utils.cpp in Sources */, - EC43C1640D075E6600000000 /* vec2.cpp in Sources */, - EC43C164D02AC36400000000 /* vec3.cpp in Sources */, - EC43C1644E6E1B1A00000000 /* vec4.cpp in Sources */, + 49B7A4FC0592E24D00000000 /* mat4.cpp in math */, + 49B7A4FCB1FDA98700000000 /* math_utils.cpp in math */, + 49B7A4FC0156E7A600000000 /* vec2.cpp in math */, + 49B7A4FC7FAD39F900000000 /* vec3.cpp in math */, + 49B7A4FC7A9963A400000000 /* vec4.cpp in math */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C000000000000000B /* Sources */ = { + 3E7AC1A6000000000000000B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C164350B780B00000001 /* face_mesh_module.cpp in Sources */, + 49B7A4FC4CC6C91400000001 /* face_mesh_module.cc in beauty */, + 49B7A4FC8563DF9500000001 /* face_mesh_beauty_render.cc in beauty */, + 49B7A4FCA59EA68600000001 /* face_mesh_module_imp.cc in beauty */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C000000000000000C /* Sources */ = { + 3E7AC1A6000000000000000C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C16487DFEA2300000001 /* OlaGraph.cpp in Sources */, + 49B7A4FCB288401C00000001 /* ola_graph.cc in common */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C000000000000000D /* Sources */ = { + 3E7AC1A6000000000000000D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C164731BD67000000002 /* FramebufferCache.cpp in Sources */, - EC43C1642A43360700000002 /* Framebuffer.cpp in Sources */, - EC43C16430D1B2CD00000002 /* Target.cpp in Sources */, - EC43C164115CC07300000002 /* Context.cpp in Sources */, - EC43C16446361A7400000002 /* Filter.cpp in Sources */, - EC43C164E8D550C300000002 /* GLProgram.cpp in Sources */, - EC43C1647352B17300000002 /* Source.cpp in Sources */, - EC43C164E04A951600000002 /* SourceImage.cpp in Sources */, - EC43C164815E3DC900000002 /* IOSTarget.cpp in Sources */, - EC43C164F382926900000002 /* SourceCamera.cpp in Sources */, - EC43C164024E437300000002 /* TargetView.cpp in Sources */, - EC43C164FAB2EC1300000002 /* FilterGroup.cpp in Sources */, - EC43C164731BD67000000003 /* FramebufferCache.cpp in Sources */, - EC43C1642A43360700000003 /* Framebuffer.cpp in Sources */, - EC43C16430D1B2CD00000003 /* Target.cpp in Sources */, - EC43C164115CC07300000003 /* Context.cpp in Sources */, - EC43C16446361A7400000003 /* Filter.cpp in Sources */, - EC43C164E8D550C300000003 /* GLProgram.cpp in Sources */, - EC43C1647352B17300000003 /* Source.cpp in Sources */, - EC43C164E04A951600000003 /* SourceImage.cpp in Sources */, - EC43C164815E3DC900000003 /* IOSTarget.cpp in Sources */, - EC43C164F382926900000003 /* SourceCamera.cpp in Sources */, - EC43C164024E437300000003 /* TargetView.cpp in Sources */, - EC43C164FAB2EC1300000003 /* FilterGroup.cpp in Sources */, + 49B7A4FC53F441A800000001 /* cpu_util.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C000000000000000E /* Sources */ = { + 3E7AC1A6000000000000000E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C1648BBC9F7900000001 /* Ref.cpp in Sources */, - EC43C1644373C5BE00000001 /* math.cpp in Sources */, - EC43C164054C67EB00000001 /* GPUImageUtil.cpp in Sources */, + 49B7A4FC357DD06500000001 /* pixel_buffer_pool_util.mm in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C000000000000000F /* Sources */ = { + 3E7AC1A6000000000000000F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C164969C674A00000001 /* mat4.cpp in Sources */, - EC43C164567DD13A00000001 /* math_utils.cpp in Sources */, - EC43C1640D075E6600000001 /* vec2.cpp in Sources */, - EC43C164D02AC36400000001 /* vec3.cpp in Sources */, - EC43C1644E6E1B1A00000001 /* vec4.cpp in Sources */, + 49B7A4FC4C094F0A00000001 /* util.cc in objc */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000010 /* Sources */ = { + 3E7AC1A60000000000000010 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C1641C1E706800000001 /* pixel_buffer_pool_util.mm in Sources */, + 49B7A4FC489C692A00000001 /* gpu_buffer_storage_cv_pixel_buffer.cc in gpu */, + 49B7A4FCA3E97E1400000001 /* gl_texture_buffer.cc in gpu */, + 49B7A4FCF51362E900000001 /* gl_texture_buffer_pool.cc in gpu */, + 49B7A4FCEA623A4800000001 /* gl_texture_view.cc in gpu */, + 49B7A4FC8EDC082600000001 /* gpu_buffer.cc in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000011 /* Sources */ = { + 3E7AC1A60000000000000011 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C164512859F400000001 /* util.cc in Sources */, + 49B7A4FC2E9744D600000001 /* gpu_buffer_storage.cc in gpu */, + 49B7A4FC92E2BF3700000001 /* gpu_buffer_format.cc in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000012 /* Sources */ = { + 3E7AC1A60000000000000012 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C164FCDA188900000001 /* gpu_buffer_storage_cv_pixel_buffer.cc in Sources */, - EC43C164F8C96D3D00000001 /* gl_texture_buffer.cc in Sources */, - EC43C164CEAD353700000001 /* gl_texture_buffer_pool.cc in Sources */, - EC43C164216C8D5C00000001 /* gl_texture_view.cc in Sources */, - EC43C16497ED1FC700000001 /* gpu_buffer.cc in Sources */, + 49B7A4FC2F39A2D500000001 /* gpu_buffer_multi_pool.cc in gpu */, + 49B7A4FCD11949C300000001 /* gl_context.cc in gpu */, + 49B7A4FC4AFAD92200000001 /* gl_context_eagl.cc in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000013 /* Sources */ = { + 3E7AC1A60000000000000013 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C164AAA2FE7000000001 /* gpu_buffer_storage.cc in Sources */, - EC43C1642E6B486000000001 /* gpu_buffer_format.cc in Sources */, + 49B7A4FC42538A8300000002 /* FramebufferCache.cpp in core */, + 49B7A4FC5771EFBD00000002 /* Framebuffer.cpp in core */, + 49B7A4FC2E87CC4E00000002 /* Target.cpp in core */, + 49B7A4FC6328969D00000002 /* Context.cpp in core */, + 49B7A4FC9A0C486600000002 /* Filter.cpp in core */, + 49B7A4FCD9FC1F1200000002 /* GLProgram.cpp in core */, + 49B7A4FC403A0ACA00000002 /* Source.cpp in core */, + 49B7A4FC4CCA495100000002 /* SourceImage.cpp in core */, + 49B7A4FCC345270B00000002 /* IOSTarget.cpp in core */, + 49B7A4FCA688677600000002 /* SourceCamera.cpp in core */, + 49B7A4FCC7392BFD00000002 /* TargetView.cpp in core */, + 49B7A4FC36A1BCF500000002 /* FilterGroup.cpp in core */, + 49B7A4FC42538A8300000003 /* FramebufferCache.cpp in core */, + 49B7A4FC5771EFBD00000003 /* Framebuffer.cpp in core */, + 49B7A4FC2E87CC4E00000003 /* Target.cpp in core */, + 49B7A4FC6328969D00000003 /* Context.cpp in core */, + 49B7A4FC9A0C486600000003 /* Filter.cpp in core */, + 49B7A4FCD9FC1F1200000003 /* GLProgram.cpp in core */, + 49B7A4FC403A0ACA00000003 /* Source.cpp in core */, + 49B7A4FC4CCA495100000003 /* SourceImage.cpp in core */, + 49B7A4FCC345270B00000003 /* IOSTarget.cpp in core */, + 49B7A4FCA688677600000003 /* SourceCamera.cpp in core */, + 49B7A4FCC7392BFD00000003 /* TargetView.cpp in core */, + 49B7A4FC36A1BCF500000003 /* FilterGroup.cpp in core */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000014 /* Sources */ = { + 3E7AC1A60000000000000014 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C164043DD14B00000001 /* gpu_buffer_multi_pool.cc in Sources */, - EC43C1647C7A404400000001 /* gl_context.cc in Sources */, - EC43C164C905FCC400000001 /* gl_context_eagl.cc in Sources */, + 49B7A4FCDBE5CD1B00000001 /* Ref.cpp in core */, + 49B7A4FC64A7F94D00000001 /* math.cpp in core */, + 49B7A4FC3950B88400000001 /* GPUImageUtil.cpp in core */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000015 /* Sources */ = { + 3E7AC1A60000000000000015 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C164A54788E300000001 /* cpu_util.cc in Sources */, + 49B7A4FC0592E24D00000001 /* mat4.cpp in math */, + 49B7A4FCB1FDA98700000001 /* math_utils.cpp in math */, + 49B7A4FC0156E7A600000001 /* vec2.cpp in math */, + 49B7A4FC7FAD39F900000001 /* vec3.cpp in math */, + 49B7A4FC7A9963A400000001 /* vec4.cpp in math */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000016 /* Sources */ = { + 3E7AC1A60000000000000016 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C1644AC087AD00000000 /* MPPGraphGPUData.mm in Sources */, - EC43C164D3B4F92F00000000 /* gpu_shared_data_internal.cc in Sources */, + 49B7A4FCBA4BE9D200000000 /* MPPGraphGPUData.mm in gpu */, + 49B7A4FC8618537700000000 /* gpu_shared_data_internal.cc in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000017 /* Sources */ = { + 3E7AC1A60000000000000017 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C1644AC087AD00000001 /* MPPGraphGPUData.mm in Sources */, - EC43C164D3B4F92F00000001 /* gpu_shared_data_internal.cc in Sources */, + 49B7A4FCBA4BE9D200000001 /* MPPGraphGPUData.mm in gpu */, + 49B7A4FC8618537700000001 /* gpu_shared_data_internal.cc in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000018 /* Sources */ = { + 3E7AC1A60000000000000018 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C164485AE53400000000 /* MPPMetalHelper.mm in Sources */, + 49B7A4FC849B03E000000000 /* MPPMetalHelper.mm in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000019 /* Sources */ = { + 3E7AC1A60000000000000019 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C164A1D1B51100000000 /* MPPGraph.mm in Sources */, - EC43C1646E0AB7DE00000000 /* MPPTimestampConverter.mm in Sources */, - EC43C164A23EAE8F00000000 /* NSError+util_status.mm in Sources */, + 49B7A4FCEEE7D66700000000 /* MPPGraph.mm in objc */, + 49B7A4FC48E4E18100000000 /* MPPTimestampConverter.mm in objc */, + 49B7A4FC998F8A2E00000000 /* NSError+util_status.mm in objc */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C000000000000001A /* Sources */ = { + 3E7AC1A6000000000000001A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C164485AE53400000001 /* MPPMetalHelper.mm in Sources */, + 49B7A4FC849B03E000000001 /* MPPMetalHelper.mm in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C000000000000001B /* Sources */ = { + 3E7AC1A6000000000000001B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C164A1D1B51100000001 /* MPPGraph.mm in Sources */, - EC43C1646E0AB7DE00000001 /* MPPTimestampConverter.mm in Sources */, - EC43C164A23EAE8F00000001 /* NSError+util_status.mm in Sources */, + 49B7A4FCEEE7D66700000001 /* MPPGraph.mm in objc */, + 49B7A4FC48E4E18100000001 /* MPPTimestampConverter.mm in objc */, + 49B7A4FC998F8A2E00000001 /* NSError+util_status.mm in objc */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C000000000000001C /* Sources */ = { + 3E7AC1A6000000000000001C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C16461BCBB4F00000000 /* MPPMetalUtil.mm in Sources */, + 49B7A4FCFF18EE3C00000000 /* MPPMetalUtil.mm in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C000000000000001D /* Sources */ = { + 3E7AC1A6000000000000001D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C16461BCBB4F00000001 /* MPPMetalUtil.mm in Sources */, + 49B7A4FCFF18EE3C00000001 /* MPPMetalUtil.mm in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C000000000000001E /* Sources */ = { + 3E7AC1A6000000000000001E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C164E5A048F400000000 /* OlaFaceUnity.mm in Sources */, + 49B7A4FCF4C8279B00000000 /* OlaFaceUnity.mm in ios */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C000000000000001F /* Sources */ = { + 3E7AC1A6000000000000001F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C164E5A048F400000001 /* OlaFaceUnity.mm in Sources */, + 49B7A4FCF4C8279B00000001 /* OlaFaceUnity.mm in ios */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000020 /* Sources */ = { + 3E7AC1A60000000000000020 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C1642284465B00000000 /* annotation_overlay_calculator.cc in Sources */, + 49B7A4FC9E41D6ED00000000 /* annotation_overlay_calculator.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000021 /* Sources */ = { + 3E7AC1A60000000000000021 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C1646708DA9D00000000 /* annotation_renderer.cc in Sources */, + 49B7A4FC1E08E4F200000000 /* annotation_renderer.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000022 /* Sources */ = { + 3E7AC1A60000000000000022 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C16473F96BB900000000 /* shader_util.cc in Sources */, + 49B7A4FC1AA4F1AC00000000 /* gl_simple_shaders.cc in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000023 /* Sources */ = { + 3E7AC1A60000000000000023 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C1644ECFA1D200000000 /* gl_calculator_helper.cc in Sources */, - EC43C1644A333ECF00000000 /* gl_calculator_helper_impl_common.cc in Sources */, + 49B7A4FCDD869D9E00000000 /* gl_calculator_helper.cc in gpu */, + 49B7A4FCC05BE00400000000 /* gl_calculator_helper_impl_common.cc in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000024 /* Sources */ = { + 3E7AC1A60000000000000024 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C164FD2C140F00000000 /* image_properties_calculator.cc in Sources */, - EC43C16492727CA000000000 /* gpu_service.cc in Sources */, + 49B7A4FC7D7F06EB00000000 /* image_properties_calculator.cc in image */, + 49B7A4FC984EF97C00000000 /* gpu_service.cc in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000025 /* Sources */ = { + 3E7AC1A60000000000000025 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C164439B269800000000 /* gl_simple_shaders.cc in Sources */, + 49B7A4FC369A201C00000000 /* shader_util.cc in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000026 /* Sources */ = { + 3E7AC1A60000000000000026 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C1642284465B00000001 /* annotation_overlay_calculator.cc in Sources */, + 49B7A4FC9E41D6ED00000001 /* annotation_overlay_calculator.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000027 /* Sources */ = { + 3E7AC1A60000000000000027 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C16473F96BB900000001 /* shader_util.cc in Sources */, + 49B7A4FC1AA4F1AC00000001 /* gl_simple_shaders.cc in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000028 /* Sources */ = { + 3E7AC1A60000000000000028 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C164439B269800000001 /* gl_simple_shaders.cc in Sources */, + 49B7A4FCDD869D9E00000001 /* gl_calculator_helper.cc in gpu */, + 49B7A4FCC05BE00400000001 /* gl_calculator_helper_impl_common.cc in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000029 /* Sources */ = { + 3E7AC1A60000000000000029 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C1646708DA9D00000001 /* annotation_renderer.cc in Sources */, + 49B7A4FC7D7F06EB00000001 /* image_properties_calculator.cc in image */, + 49B7A4FC984EF97C00000001 /* gpu_service.cc in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C000000000000002A /* Sources */ = { + 3E7AC1A6000000000000002A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C1644ECFA1D200000001 /* gl_calculator_helper.cc in Sources */, - EC43C1644A333ECF00000001 /* gl_calculator_helper_impl_common.cc in Sources */, + 49B7A4FC369A201C00000001 /* shader_util.cc in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C000000000000002B /* Sources */ = { + 3E7AC1A6000000000000002B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C164FD2C140F00000001 /* image_properties_calculator.cc in Sources */, - EC43C16492727CA000000001 /* gpu_service.cc in Sources */, + 49B7A4FC1E08E4F200000001 /* annotation_renderer.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C000000000000002C /* Sources */ = { + 3E7AC1A6000000000000002C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C164861C82C600000000 /* begin_loop_calculator.cc in Sources */, + 49B7A4FC7B0088E300000000 /* begin_loop_calculator.cc in core */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C000000000000002D /* Sources */ = { + 3E7AC1A6000000000000002D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C164861C82C600000001 /* begin_loop_calculator.cc in Sources */, + 49B7A4FC7B0088E300000001 /* begin_loop_calculator.cc in core */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C000000000000002E /* Sources */ = { + 3E7AC1A6000000000000002E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C16429667CB800000000 /* clip_vector_size_calculator.cc in Sources */, + 49B7A4FC53BB6A1B00000000 /* clip_vector_size_calculator.cc in core */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C000000000000002F /* Sources */ = { + 3E7AC1A6000000000000002F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C16429667CB800000001 /* clip_vector_size_calculator.cc in Sources */, + 49B7A4FC53BB6A1B00000001 /* clip_vector_size_calculator.cc in core */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000030 /* Sources */ = { + 3E7AC1A60000000000000030 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C1644F7EA7CE00000000 /* cpu_op_resolver.cc in Sources */, + 49B7A4FC1370E16B00000000 /* cpu_op_resolver.cc in tflite */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000031 /* Sources */ = { + 3E7AC1A60000000000000031 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C1645DA9AAF300000000 /* max_unpooling.cc in Sources */, - EC43C164466D956B00000000 /* max_pool_argmax.cc in Sources */, + 49B7A4FC3EF5E91200000000 /* transform_tensor_bilinear.cc in operations */, + 49B7A4FC9298B3CD00000000 /* landmarks_to_transform_matrix.cc in operations */, + 49B7A4FC096C09DF00000000 /* transform_landmarks.cc in operations */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000032 /* Sources */ = { + 3E7AC1A60000000000000032 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C1648FE6AC8600000000 /* transform_tensor_bilinear.cc in Sources */, - EC43C1648537330500000000 /* landmarks_to_transform_matrix.cc in Sources */, - EC43C164A42FD6CE00000000 /* transform_landmarks.cc in Sources */, + 49B7A4FCE7ED8E2C00000000 /* transpose_conv_bias.cc in operations */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000033 /* Sources */ = { + 3E7AC1A60000000000000033 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C164C2113DD500000000 /* transpose_conv_bias.cc in Sources */, + 49B7A4FCF18A35B600000000 /* max_unpooling.cc in operations */, + 49B7A4FCCDEAEE5C00000000 /* max_pool_argmax.cc in operations */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000034 /* Sources */ = { + 3E7AC1A60000000000000034 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C1644F7EA7CE00000001 /* cpu_op_resolver.cc in Sources */, + 49B7A4FC1370E16B00000001 /* cpu_op_resolver.cc in tflite */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000035 /* Sources */ = { + 3E7AC1A60000000000000035 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C1645DA9AAF300000001 /* max_unpooling.cc in Sources */, - EC43C164466D956B00000001 /* max_pool_argmax.cc in Sources */, + 49B7A4FCF18A35B600000001 /* max_unpooling.cc in operations */, + 49B7A4FCCDEAEE5C00000001 /* max_pool_argmax.cc in operations */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000036 /* Sources */ = { + 3E7AC1A60000000000000036 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C164C2113DD500000001 /* transpose_conv_bias.cc in Sources */, + 49B7A4FC3EF5E91200000001 /* transform_tensor_bilinear.cc in operations */, + 49B7A4FC9298B3CD00000001 /* landmarks_to_transform_matrix.cc in operations */, + 49B7A4FC096C09DF00000001 /* transform_landmarks.cc in operations */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000037 /* Sources */ = { + 3E7AC1A60000000000000037 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C1648FE6AC8600000001 /* transform_tensor_bilinear.cc in Sources */, - EC43C1648537330500000001 /* landmarks_to_transform_matrix.cc in Sources */, - EC43C164A42FD6CE00000001 /* transform_landmarks.cc in Sources */, + 49B7A4FCE7ED8E2C00000001 /* transpose_conv_bias.cc in operations */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000038 /* Sources */ = { + 3E7AC1A60000000000000038 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C164EBDBE6FA00000000 /* detection_projection_calculator.cc in Sources */, + 49B7A4FC61F8D8DE00000000 /* detection_projection_calculator.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000039 /* Sources */ = { + 3E7AC1A60000000000000039 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C164EBDBE6FA00000001 /* detection_projection_calculator.cc in Sources */, + 49B7A4FC61F8D8DE00000001 /* detection_projection_calculator.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C000000000000003A /* Sources */ = { + 3E7AC1A6000000000000003A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C1643637376A00000000 /* image_to_tensor_calculator.cc in Sources */, + 49B7A4FC549B74DB00000000 /* image_to_tensor_calculator.cc in tensor */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C000000000000003B /* Sources */ = { + 3E7AC1A6000000000000003B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C1643BCE8AD900000000 /* image_to_tensor_converter_opencv.cc in Sources */, + 49B7A4FCF332D51F00000000 /* image_to_tensor_converter_opencv.cc in tensor */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C000000000000003C /* Sources */ = { + 3E7AC1A6000000000000003C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C1641AF2345600000000 /* rectangle_util.cc in Sources */, - EC43C1648597B84200000000 /* callback_packet_calculator.cc in Sources */, - EC43C164F31FC2AD00000000 /* image_to_tensor_utils.cc in Sources */, + 49B7A4FC60EAFF9D00000000 /* rectangle_util.cc in util */, + 49B7A4FC225F8AC300000000 /* callback_packet_calculator.cc in internal */, + 49B7A4FC2CF83E7600000000 /* image_to_tensor_utils.cc in tensor */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C000000000000003D /* Sources */ = { + 3E7AC1A6000000000000003D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C1643637376A00000001 /* image_to_tensor_calculator.cc in Sources */, + 49B7A4FC549B74DB00000001 /* image_to_tensor_calculator.cc in tensor */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C000000000000003E /* Sources */ = { + 3E7AC1A6000000000000003E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C1641AF2345600000001 /* rectangle_util.cc in Sources */, - EC43C1648597B84200000001 /* callback_packet_calculator.cc in Sources */, - EC43C164F31FC2AD00000001 /* image_to_tensor_utils.cc in Sources */, + 49B7A4FCF332D51F00000001 /* image_to_tensor_converter_opencv.cc in tensor */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C000000000000003F /* Sources */ = { + 3E7AC1A6000000000000003F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C1643BCE8AD900000001 /* image_to_tensor_converter_opencv.cc in Sources */, + 49B7A4FC60EAFF9D00000001 /* rectangle_util.cc in util */, + 49B7A4FC225F8AC300000001 /* callback_packet_calculator.cc in internal */, + 49B7A4FC2CF83E7600000001 /* image_to_tensor_utils.cc in tensor */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000040 /* Sources */ = { + 3E7AC1A60000000000000040 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C164FBEF99EE00000000 /* image_to_tensor_converter_metal.cc in Sources */, + 49B7A4FC635CAFD500000000 /* image_to_tensor_converter_metal.cc in tensor */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000041 /* Sources */ = { + 3E7AC1A60000000000000041 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C164FBEF99EE00000001 /* image_to_tensor_converter_metal.cc in Sources */, + 49B7A4FC635CAFD500000001 /* image_to_tensor_converter_metal.cc in tensor */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000042 /* Sources */ = { + 3E7AC1A60000000000000042 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C16448DF98DB00000000 /* inference_calculator.cc in Sources */, - EC43C16456D28C4300000000 /* inference_calculator_cpu.cc in Sources */, + 49B7A4FC8FB74E7600000000 /* inference_calculator.cc in tensor */, + 49B7A4FC29F2D5B300000000 /* inference_calculator_cpu.cc in tensor */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000043 /* Sources */ = { + 3E7AC1A60000000000000043 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C1648A2AAB7400000000 /* tflite_model_loader.cc in Sources */, + 49B7A4FC8369D9F900000000 /* tflite_model_loader.cc in tflite */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000044 /* Sources */ = { + 3E7AC1A60000000000000044 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C16457EF428E00000000 /* resource_util.cc in Sources */, - EC43C164994837E700000000 /* resource_util_apple.cc in Sources */, + 49B7A4FC5D4491B500000000 /* resource_util.cc in util */, + 49B7A4FC99A19E9200000000 /* resource_util_apple.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000045 /* Sources */ = { + 3E7AC1A60000000000000045 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C16448DF98DB00000001 /* inference_calculator.cc in Sources */, - EC43C16456D28C4300000001 /* inference_calculator_cpu.cc in Sources */, + 49B7A4FC8FB74E7600000001 /* inference_calculator.cc in tensor */, + 49B7A4FC29F2D5B300000001 /* inference_calculator_cpu.cc in tensor */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000046 /* Sources */ = { + 3E7AC1A60000000000000046 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C1648A2AAB7400000001 /* tflite_model_loader.cc in Sources */, + 49B7A4FC8369D9F900000001 /* tflite_model_loader.cc in tflite */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000047 /* Sources */ = { + 3E7AC1A60000000000000047 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C16457EF428E00000001 /* resource_util.cc in Sources */, - EC43C164994837E700000001 /* resource_util_apple.cc in Sources */, + 49B7A4FC5D4491B500000001 /* resource_util.cc in util */, + 49B7A4FC99A19E9200000001 /* resource_util_apple.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000048 /* Sources */ = { + 3E7AC1A60000000000000048 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C164D57A06BE00000000 /* inference_calculator_metal.cc in Sources */, + 49B7A4FC134BBB5F00000000 /* inference_calculator_metal.cc in tensor */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000049 /* Sources */ = { + 3E7AC1A60000000000000049 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C164D57A06BE00000001 /* inference_calculator_metal.cc in Sources */, + 49B7A4FC134BBB5F00000001 /* inference_calculator_metal.cc in tensor */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C000000000000004A /* Sources */ = { + 3E7AC1A6000000000000004A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C1648437B63D00000000 /* non_max_suppression_calculator.cc in Sources */, + 49B7A4FC0C5B6D7000000000 /* non_max_suppression_calculator.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C000000000000004B /* Sources */ = { + 3E7AC1A6000000000000004B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C1648437B63D00000001 /* non_max_suppression_calculator.cc in Sources */, + 49B7A4FC0C5B6D7000000001 /* non_max_suppression_calculator.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C000000000000004C /* Sources */ = { + 3E7AC1A6000000000000004C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C1647EA8AD8900000000 /* op_resolver.cc in Sources */, + 49B7A4FCFD02751100000000 /* op_resolver.cc in tflite */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C000000000000004D /* Sources */ = { + 3E7AC1A6000000000000004D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C1647EA8AD8900000001 /* op_resolver.cc in Sources */, + 49B7A4FCFD02751100000001 /* op_resolver.cc in tflite */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C000000000000004E /* Sources */ = { + 3E7AC1A6000000000000004E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C1643634749B00000000 /* previous_loopback_calculator.cc in Sources */, - EC43C16467291D3100000000 /* header_util.cc in Sources */, + 49B7A4FCCD95EE7200000000 /* previous_loopback_calculator.cc in core */, + 49B7A4FC3FEF732500000000 /* header_util.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C000000000000004F /* Sources */ = { + 3E7AC1A6000000000000004F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C1643634749B00000001 /* previous_loopback_calculator.cc in Sources */, - EC43C16467291D3100000001 /* header_util.cc in Sources */, + 49B7A4FCCD95EE7200000001 /* previous_loopback_calculator.cc in core */, + 49B7A4FC3FEF732500000001 /* header_util.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000050 /* Sources */ = { + 3E7AC1A60000000000000050 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C164A60E9BF200000000 /* split_vector_calculator.cc in Sources */, + 49B7A4FC18FF939300000000 /* split_vector_calculator.cc in core */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000051 /* Sources */ = { + 3E7AC1A60000000000000051 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C164A60E9BF200000001 /* split_vector_calculator.cc in Sources */, + 49B7A4FC18FF939300000001 /* split_vector_calculator.cc in core */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000052 /* Sources */ = { + 3E7AC1A60000000000000052 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C16446E8118200000000 /* tensors_to_detections_calculator.cc in Sources */, + 49B7A4FC6414206900000000 /* tensors_to_detections_calculator.cc in tensor */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000053 /* Sources */ = { + 3E7AC1A60000000000000053 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C16446E8118200000001 /* tensors_to_detections_calculator.cc in Sources */, + 49B7A4FC6414206900000001 /* tensors_to_detections_calculator.cc in tensor */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000054 /* Sources */ = { + 3E7AC1A60000000000000054 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C1642CE04EFD00000000 /* tensors_to_landmarks_calculator.cc in Sources */, - EC43C164425236D800000000 /* tensors_to_floats_calculator.cc in Sources */, + 49B7A4FCD84977E600000000 /* tensors_to_landmarks_calculator.cc in tensor */, + 49B7A4FCD8BCE6D000000000 /* tensors_to_floats_calculator.cc in tensor */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000055 /* Sources */ = { + 3E7AC1A60000000000000055 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C1642CE04EFD00000001 /* tensors_to_landmarks_calculator.cc in Sources */, - EC43C164425236D800000001 /* tensors_to_floats_calculator.cc in Sources */, + 49B7A4FCD84977E600000001 /* tensors_to_landmarks_calculator.cc in tensor */, + 49B7A4FCD8BCE6D000000001 /* tensors_to_floats_calculator.cc in tensor */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000056 /* Sources */ = { + 3E7AC1A60000000000000056 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C164610B41F300000000 /* tflite_custom_op_resolver_calculator.cc in Sources */, + 49B7A4FCC43404B200000000 /* tflite_custom_op_resolver_calculator.cc in tflite */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000057 /* Sources */ = { + 3E7AC1A60000000000000057 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C164610B41F300000001 /* tflite_custom_op_resolver_calculator.cc in Sources */, + 49B7A4FCC43404B200000001 /* tflite_custom_op_resolver_calculator.cc in tflite */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000058 /* Sources */ = { + 3E7AC1A60000000000000058 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C164EB4C12EA00000000 /* tflite_model_calculator.cc in Sources */, - EC43C1643CC849C200000000 /* end_loop_calculator.cc in Sources */, + 49B7A4FC50FA3B1400000000 /* tflite_model_calculator.cc in tflite */, + 49B7A4FCD0D5BCFD00000000 /* end_loop_calculator.cc in core */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C0000000000000059 /* Sources */ = { + 3E7AC1A60000000000000059 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C164EB4C12EA00000001 /* tflite_model_calculator.cc in Sources */, - EC43C1643CC849C200000001 /* end_loop_calculator.cc in Sources */, + 49B7A4FC50FA3B1400000001 /* tflite_model_calculator.cc in tflite */, + 49B7A4FCD0D5BCFD00000001 /* end_loop_calculator.cc in core */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C000000000000005A /* Sources */ = { + 3E7AC1A6000000000000005A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C164ADAE637800000000 /* to_image_calculator.cc in Sources */, - EC43C164553C1F9100000000 /* association_norm_rect_calculator.cc in Sources */, - EC43C16462B6E69B00000000 /* collection_has_min_size_calculator.cc in Sources */, - EC43C1644528D20000000000 /* constant_side_packet_calculator.cc in Sources */, - EC43C164884B993900000000 /* detections_to_rects_calculator.cc in Sources */, - EC43C164C6B713FC00000000 /* detections_to_render_data_calculator.cc in Sources */, - EC43C164B77E32DB00000000 /* face_landmarks_to_render_data_calculator.cc in Sources */, - EC43C164C4B69F3800000000 /* flow_limiter_calculator.cc in Sources */, - EC43C164CD95B30F00000000 /* gate_calculator.cc in Sources */, - EC43C16474F94ED900000000 /* landmark_projection_calculator.cc in Sources */, - EC43C16472A6165000000000 /* landmarks_refinement_calculator.cc in Sources */, - EC43C164B51C03B400000000 /* landmarks_to_detection_calculator.cc in Sources */, - EC43C164730C61E800000000 /* landmarks_to_render_data_calculator.cc in Sources */, - EC43C1644F3D133A00000000 /* local_file_contents_calculator.cc in Sources */, - EC43C164D11E82F000000000 /* rect_to_render_data_calculator.cc in Sources */, - EC43C1642684427300000000 /* rect_transformation_calculator.cc in Sources */, - EC43C164F2D261CD00000000 /* split_proto_list_calculator.cc in Sources */, - EC43C1646A77E38000000000 /* ssd_anchors_calculator.cc in Sources */, - EC43C164941107A700000000 /* thresholding_calculator.cc in Sources */, + 49B7A4FC69D807EA00000000 /* to_image_calculator.cc in util */, + 49B7A4FCE46A0E9300000000 /* association_norm_rect_calculator.cc in util */, + 49B7A4FC841EB37B00000000 /* collection_has_min_size_calculator.cc in util */, + 49B7A4FC267D173700000000 /* constant_side_packet_calculator.cc in core */, + 49B7A4FCA1639D0C00000000 /* detections_to_rects_calculator.cc in util */, + 49B7A4FCBED4CA2400000000 /* detections_to_render_data_calculator.cc in util */, + 49B7A4FCAF368E8800000000 /* face_landmarks_to_render_data_calculator.cc in calculators */, + 49B7A4FC7079047800000000 /* flow_limiter_calculator.cc in core */, + 49B7A4FCB1AC117700000000 /* gate_calculator.cc in core */, + 49B7A4FCA0A3B78B00000000 /* landmark_projection_calculator.cc in util */, + 49B7A4FCCCE7F65F00000000 /* landmarks_refinement_calculator.cc in util */, + 49B7A4FC13423C4400000000 /* landmarks_to_detection_calculator.cc in util */, + 49B7A4FCBC1DF28100000000 /* landmarks_to_render_data_calculator.cc in util */, + 49B7A4FC8F068F4700000000 /* local_file_contents_calculator.cc in util */, + 49B7A4FC259898F600000000 /* rect_to_render_data_calculator.cc in util */, + 49B7A4FC6D2A8B0300000000 /* rect_transformation_calculator.cc in util */, + 49B7A4FCD71B607200000000 /* split_proto_list_calculator.cc in core */, + 49B7A4FC57CDD24300000000 /* ssd_anchors_calculator.cc in tflite */, + 49B7A4FCBCE7858600000000 /* thresholding_calculator.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20199D1C000000000000005B /* Sources */ = { + 3E7AC1A6000000000000005B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - EC43C164ADAE637800000001 /* to_image_calculator.cc in Sources */, - EC43C164553C1F9100000001 /* association_norm_rect_calculator.cc in Sources */, - EC43C16462B6E69B00000001 /* collection_has_min_size_calculator.cc in Sources */, - EC43C1644528D20000000001 /* constant_side_packet_calculator.cc in Sources */, - EC43C164884B993900000001 /* detections_to_rects_calculator.cc in Sources */, - EC43C164C6B713FC00000001 /* detections_to_render_data_calculator.cc in Sources */, - EC43C164B77E32DB00000001 /* face_landmarks_to_render_data_calculator.cc in Sources */, - EC43C164C4B69F3800000001 /* flow_limiter_calculator.cc in Sources */, - EC43C164CD95B30F00000001 /* gate_calculator.cc in Sources */, - EC43C16474F94ED900000001 /* landmark_projection_calculator.cc in Sources */, - EC43C16472A6165000000001 /* landmarks_refinement_calculator.cc in Sources */, - EC43C164B51C03B400000001 /* landmarks_to_detection_calculator.cc in Sources */, - EC43C164730C61E800000001 /* landmarks_to_render_data_calculator.cc in Sources */, - EC43C1644F3D133A00000001 /* local_file_contents_calculator.cc in Sources */, - EC43C164D11E82F000000001 /* rect_to_render_data_calculator.cc in Sources */, - EC43C1642684427300000001 /* rect_transformation_calculator.cc in Sources */, - EC43C164F2D261CD00000001 /* split_proto_list_calculator.cc in Sources */, - EC43C1646A77E38000000001 /* ssd_anchors_calculator.cc in Sources */, - EC43C164941107A700000001 /* thresholding_calculator.cc in Sources */, + 49B7A4FC69D807EA00000001 /* to_image_calculator.cc in util */, + 49B7A4FCE46A0E9300000001 /* association_norm_rect_calculator.cc in util */, + 49B7A4FC841EB37B00000001 /* collection_has_min_size_calculator.cc in util */, + 49B7A4FC267D173700000001 /* constant_side_packet_calculator.cc in core */, + 49B7A4FCA1639D0C00000001 /* detections_to_rects_calculator.cc in util */, + 49B7A4FCBED4CA2400000001 /* detections_to_render_data_calculator.cc in util */, + 49B7A4FCAF368E8800000001 /* face_landmarks_to_render_data_calculator.cc in calculators */, + 49B7A4FC7079047800000001 /* flow_limiter_calculator.cc in core */, + 49B7A4FCB1AC117700000001 /* gate_calculator.cc in core */, + 49B7A4FCA0A3B78B00000001 /* landmark_projection_calculator.cc in util */, + 49B7A4FCCCE7F65F00000001 /* landmarks_refinement_calculator.cc in util */, + 49B7A4FC13423C4400000001 /* landmarks_to_detection_calculator.cc in util */, + 49B7A4FCBC1DF28100000001 /* landmarks_to_render_data_calculator.cc in util */, + 49B7A4FC8F068F4700000001 /* local_file_contents_calculator.cc in util */, + 49B7A4FC259898F600000001 /* rect_to_render_data_calculator.cc in util */, + 49B7A4FC6D2A8B0300000001 /* rect_transformation_calculator.cc in util */, + 49B7A4FCD71B607200000001 /* split_proto_list_calculator.cc in core */, + 49B7A4FC57CDD24300000001 /* ssd_anchors_calculator.cc in tflite */, + 49B7A4FCBCE7858600000001 /* thresholding_calculator.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - EC2CE7DA06BDEB2B00000000 /* PBXTargetDependency */ = { + C871945004A520C300000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E50106BDEB2A00000000 /* _idx_tflite_model_loader_F900857E_ios_min11.0 */; - targetProxy = 79F19D9D06BDEB2B00000000 /* PBXContainerItemProxy */; + targetProxy = 7571235F04A520C300000000 /* PBXContainerItemProxy */; }; - EC2CE7DA0AA81EC300000000 /* PBXTargetDependency */ = { + C87194500A556C3100000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E5010AA81EC200000000 /* _idx_annotation_renderer_BE836363_ios_min11.0 */; - targetProxy = 79F19D9D0AA81EC300000000 /* PBXContainerItemProxy */; + targetProxy = 7571235F0A556C3100000000 /* PBXContainerItemProxy */; }; - EC2CE7DA0C83C67D00000000 /* PBXTargetDependency */ = { + C87194500B74D91900000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E5010C83C67C00000000 /* _idx_ref_gpuimagemath_gpuimageutil_8BF43A5D_ios_min15.5 */; - targetProxy = 79F19D9D0C83C67D00000000 /* PBXContainerItemProxy */; + targetProxy = 7571235F0B74D91900000000 /* PBXContainerItemProxy */; }; - EC2CE7DA107AC04100000000 /* PBXTargetDependency */ = { + C87194500EBED90100000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E501107AC04000000000 /* _idx_cpu_op_resolver_741B9450_ios_min15.5 */; - targetProxy = 79F19D9D107AC04100000000 /* PBXContainerItemProxy */; + targetProxy = 7571235F0EBED90100000000 /* PBXContainerItemProxy */; }; - EC2CE7DA126D7CC700000000 /* PBXTargetDependency */ = { + C871945014B7442B00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E501126D7CC600000000 /* _idx_gpu_buffer_storage_gpu_buffer_format_BA46520A_ios_min11.0 */; - targetProxy = 79F19D9D126D7CC700000000 /* PBXContainerItemProxy */; + targetProxy = 7571235F14B7442B00000000 /* PBXContainerItemProxy */; }; - EC2CE7DA12A6202500000000 /* PBXTargetDependency */ = { + C871945016C7A06F00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E50112A6202400000000 /* _idx_MPPMetalUtil_E63D8158_ios_min15.5 */; - targetProxy = 79F19D9D12A6202500000000 /* PBXContainerItemProxy */; + targetProxy = 7571235F16C7A06F00000000 /* PBXContainerItemProxy */; }; - EC2CE7DA25CEBB5F00000000 /* PBXTargetDependency */ = { + C871945017CF694F00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E50125CEBB5E00000000 /* _idx_MPPMetalUtil_E63D8158_ios_min11.0 */; - targetProxy = 79F19D9D25CEBB5F00000000 /* PBXContainerItemProxy */; + targetProxy = 7571235F17CF694F00000000 /* PBXContainerItemProxy */; }; - EC2CE7DA28DF669100000000 /* PBXTargetDependency */ = { + C87194501918237700000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E50128DF669000000000 /* _idx_transpose_conv_bias_207EFBC1_ios_min15.5 */; - targetProxy = 79F19D9D28DF669100000000 /* PBXContainerItemProxy */; + targetProxy = 7571235F1918237700000000 /* PBXContainerItemProxy */; }; - EC2CE7DA2B54506300000000 /* PBXTargetDependency */ = { + C87194501AFB53CB00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E5012B54506200000000 /* _idx_math_3043B97F_ios_min11.0 */; - targetProxy = 79F19D9D2B54506300000000 /* PBXContainerItemProxy */; + targetProxy = 7571235F1AFB53CB00000000 /* PBXContainerItemProxy */; }; - EC2CE7DA2CDA58B700000000 /* PBXTargetDependency */ = { + C87194502FCF8C3F00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E5012CDA58B600000000 /* _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_AB0D0716_ios_min15.5 */; - targetProxy = 79F19D9D2CDA58B700000000 /* PBXContainerItemProxy */; + targetProxy = 7571235F2FCF8C3F00000000 /* PBXContainerItemProxy */; }; - EC2CE7DA2EDC5D5B00000000 /* PBXTargetDependency */ = { + C871945032A4BF4B00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E5012EDC5D5A00000000 /* _idx_max_unpooling_max_pool_argmax_92E156D6_ios_min15.5 */; - targetProxy = 79F19D9D2EDC5D5B00000000 /* PBXContainerItemProxy */; + targetProxy = 7571235F32A4BF4B00000000 /* PBXContainerItemProxy */; }; - EC2CE7DA33E4A23D00000000 /* PBXTargetDependency */ = { + C871945032AD902100000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E50133E4A23C00000000 /* _idx_cpu_op_resolver_741B9450_ios_min11.0 */; - targetProxy = 79F19D9D33E4A23D00000000 /* PBXContainerItemProxy */; + targetProxy = 7571235F32AD902100000000 /* PBXContainerItemProxy */; }; - EC2CE7DA37FF534F00000000 /* PBXTargetDependency */ = { + C8719450395CFE5100000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E50137FF534E00000000 /* _idx_image_properties_calculator_gpu_service_6BF370A2_ios_min11.0 */; - targetProxy = 79F19D9D37FF534F00000000 /* PBXContainerItemProxy */; + targetProxy = 7571235F395CFE5100000000 /* PBXContainerItemProxy */; }; - EC2CE7DA3C33B88F00000000 /* PBXTargetDependency */ = { + C871945039FF367F00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E5013C33B88E00000000 /* _idx_op_resolver_E390FDC7_ios_min11.0 */; - targetProxy = 79F19D9D3C33B88F00000000 /* PBXContainerItemProxy */; + targetProxy = 7571235F39FF367F00000000 /* PBXContainerItemProxy */; }; - EC2CE7DA3F591E2F00000000 /* PBXTargetDependency */ = { + C871945047A74E8D00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E5013F591E2E00000000 /* _idx_MPPGraphGPUData_733A9D5A_ios_min15.5 */; - targetProxy = 79F19D9D3F591E2F00000000 /* PBXContainerItemProxy */; + targetProxy = 7571235F47A74E8D00000000 /* PBXContainerItemProxy */; }; - EC2CE7DA4594765900000000 /* PBXTargetDependency */ = { + C87194504835E8D500000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E5014594765800000000 /* _idx_gpu_buffer_storage_gpu_buffer_format_BA46520A_ios_min15.5 */; - targetProxy = 79F19D9D4594765900000000 /* PBXContainerItemProxy */; + targetProxy = 7571235F4835E8D500000000 /* PBXContainerItemProxy */; }; - EC2CE7DA45A4DD6500000000 /* PBXTargetDependency */ = { + C87194504A6C65DF00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E50145A4DD6400000000 /* _idx_image_to_tensor_converter_opencv_F40C896E_ios_min11.0 */; - targetProxy = 79F19D9D45A4DD6500000000 /* PBXContainerItemProxy */; + targetProxy = 7571235F4A6C65DF00000000 /* PBXContainerItemProxy */; }; - EC2CE7DA462EFBA300000000 /* PBXTargetDependency */ = { + C87194504C962DED00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E501462EFBA200000000 /* _idx_cpu_util_B64315B8_ios_min11.0 */; - targetProxy = 79F19D9D462EFBA300000000 /* PBXContainerItemProxy */; + targetProxy = 7571235F4C962DED00000000 /* PBXContainerItemProxy */; }; - EC2CE7DA46D4E80900000000 /* PBXTargetDependency */ = { + C8719450507BECC700000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E50146D4E80800000000 /* _idx_transpose_conv_bias_207EFBC1_ios_min11.0 */; - targetProxy = 79F19D9D46D4E80900000000 /* PBXContainerItemProxy */; + targetProxy = 7571235F507BECC700000000 /* PBXContainerItemProxy */; }; - EC2CE7DA4843522D00000000 /* PBXTargetDependency */ = { + C871945052EE187D00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E5014843522C00000000 /* _idx_mediapipe_framework_ios_E5983FAB_ios_min15.5 */; - targetProxy = 79F19D9D4843522D00000000 /* PBXContainerItemProxy */; + targetProxy = 7571235F52EE187D00000000 /* PBXContainerItemProxy */; }; - EC2CE7DA4C0DA67100000000 /* PBXTargetDependency */ = { + C871945055AF4C6500000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E5014C0DA67000000000 /* _idx_MPPMetalHelper_7397E6A5_ios_min15.5 */; - targetProxy = 79F19D9D4C0DA67100000000 /* PBXContainerItemProxy */; + targetProxy = 7571235F55AF4C6500000000 /* PBXContainerItemProxy */; }; - EC2CE7DA4EABA32900000000 /* PBXTargetDependency */ = { + C87194505924467F00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E5014EABA32800000000 /* _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_AB0D0716_ios_min11.0 */; - targetProxy = 79F19D9D4EABA32900000000 /* PBXContainerItemProxy */; + targetProxy = 7571235F5924467F00000000 /* PBXContainerItemProxy */; }; - EC2CE7DA4EF47AD100000000 /* PBXTargetDependency */ = { + C87194505D80A99B00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E5014EF47AD000000000 /* _idx_util_28409609_ios_min11.0 */; - targetProxy = 79F19D9D4EF47AD100000000 /* PBXContainerItemProxy */; + targetProxy = 7571235F5D80A99B00000000 /* PBXContainerItemProxy */; }; - EC2CE7DA5EC7447B00000000 /* PBXTargetDependency */ = { + C8719450600148FB00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E5015EC7447A00000000 /* _idx_op_resolver_E390FDC7_ios_min15.5 */; - targetProxy = 79F19D9D5EC7447B00000000 /* PBXContainerItemProxy */; + targetProxy = 7571235F600148FB00000000 /* PBXContainerItemProxy */; }; - EC2CE7DA5F25395100000000 /* PBXTargetDependency */ = { + C871945060D0021D00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E5015F25395000000000 /* _idx_previous_loopback_calculator_header_util_D9AEB78A_ios_min11.0 */; - targetProxy = 79F19D9D5F25395100000000 /* PBXContainerItemProxy */; + targetProxy = 7571235F60D0021D00000000 /* PBXContainerItemProxy */; }; - EC2CE7DA5F558F1D00000000 /* PBXTargetDependency */ = { + C87194506D62510500000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E5015F558F1C00000000 /* _idx_image_to_tensor_converter_opencv_F40C896E_ios_min15.5 */; - targetProxy = 79F19D9D5F558F1D00000000 /* PBXContainerItemProxy */; + targetProxy = 7571235F6D62510500000000 /* PBXContainerItemProxy */; }; - EC2CE7DA60A115C900000000 /* PBXTargetDependency */ = { + C871945079337D3300000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E50160A115C800000000 /* _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_26C42D3D_ios_min15.5 */; - targetProxy = 79F19D9D60A115C900000000 /* PBXContainerItemProxy */; + targetProxy = 7571235F79337D3300000000 /* PBXContainerItemProxy */; }; - EC2CE7DA62D4D60D00000000 /* PBXTargetDependency */ = { + C8719450797718E700000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E50162D4D60C00000000 /* _idx_resource_util_B6FA1F0B_ios_min11.0 */; - targetProxy = 79F19D9D62D4D60D00000000 /* PBXContainerItemProxy */; + targetProxy = 7571235F797718E700000000 /* PBXContainerItemProxy */; }; - EC2CE7DA652D07FF00000000 /* PBXTargetDependency */ = { + C87194507E562BDF00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E501652D07FE00000000 /* _idx_previous_loopback_calculator_header_util_D9AEB78A_ios_min15.5 */; - targetProxy = 79F19D9D652D07FF00000000 /* PBXContainerItemProxy */; + targetProxy = 7571235F7E562BDF00000000 /* PBXContainerItemProxy */; }; - EC2CE7DA680A55C900000000 /* PBXTargetDependency */ = { + C871945080FCD45900000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E501680A55C800000000 /* _idx_MPPGraphGPUData_733A9D5A_ios_min11.0 */; - targetProxy = 79F19D9D680A55C900000000 /* PBXContainerItemProxy */; + targetProxy = 7571235F80FCD45900000000 /* PBXContainerItemProxy */; }; - EC2CE7DA6999113F00000000 /* PBXTargetDependency */ = { + C87194508A94473900000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E5016999113E00000000 /* _idx_pixel_buffer_pool_util_1B0D8C74_ios_min11.0 */; - targetProxy = 79F19D9D6999113F00000000 /* PBXContainerItemProxy */; + targetProxy = 7571235F8A94473900000000 /* PBXContainerItemProxy */; }; - EC2CE7DA6B67FEED00000000 /* PBXTargetDependency */ = { + C87194508AC3922B00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E5016B67FEEC00000000 /* _idx_FaceMeshGPULibrary_2BF20B88_ios_min11.0 */; - targetProxy = 79F19D9D6B67FEED00000000 /* PBXContainerItemProxy */; + targetProxy = 7571235F8AC3922B00000000 /* PBXContainerItemProxy */; }; - EC2CE7DA6B9DD04500000000 /* PBXTargetDependency */ = { + C87194508C82B9EF00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E5016B9DD04400000000 /* _idx_shader_util_F77AE4F3_ios_min11.0 */; - targetProxy = 79F19D9D6B9DD04500000000 /* PBXContainerItemProxy */; + targetProxy = 7571235F8C82B9EF00000000 /* PBXContainerItemProxy */; }; - EC2CE7DA7073403D00000000 /* PBXTargetDependency */ = { + C871945091B35B4700000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E5017073403C00000000 /* _idx_core_core-ios_4EDC2AF0_ios_min11.0 */; - targetProxy = 79F19D9D7073403D00000000 /* PBXContainerItemProxy */; + targetProxy = 7571235F91B35B4700000000 /* PBXContainerItemProxy */; }; - EC2CE7DA71C7DBE500000000 /* PBXTargetDependency */ = { + C871945092DAA70B00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E50171C7DBE400000000 /* _idx_core_core-ios_4EDC2AF0_ios_min15.5 */; - targetProxy = 79F19D9D71C7DBE500000000 /* PBXContainerItemProxy */; + targetProxy = 7571235F92DAA70B00000000 /* PBXContainerItemProxy */; }; - EC2CE7DA76D9570300000000 /* PBXTargetDependency */ = { + C871945095AF928500000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E50176D9570200000000 /* _idx_gl_simple_shaders_6A91D77D_ios_min15.5 */; - targetProxy = 79F19D9D76D9570300000000 /* PBXContainerItemProxy */; + targetProxy = 7571235F95AF928500000000 /* PBXContainerItemProxy */; }; - EC2CE7DA7B881ECB00000000 /* PBXTargetDependency */ = { + C871945095D3064100000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E5017B881ECA00000000 /* _idx_tflite_model_loader_F900857E_ios_min15.5 */; - targetProxy = 79F19D9D7B881ECB00000000 /* PBXContainerItemProxy */; + targetProxy = 7571235F95D3064100000000 /* PBXContainerItemProxy */; }; - EC2CE7DA84D8D44100000000 /* PBXTargetDependency */ = { + C8719450984088FD00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E50184D8D44000000000 /* _idx_cpu_util_B64315B8_ios_min15.5 */; - targetProxy = 79F19D9D84D8D44100000000 /* PBXContainerItemProxy */; + targetProxy = 7571235F984088FD00000000 /* PBXContainerItemProxy */; }; - EC2CE7DA9537EA2700000000 /* PBXTargetDependency */ = { + C87194509D198C3700000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E5019537EA2600000000 /* _idx_gl_calculator_helper_D8986C65_ios_min11.0 */; - targetProxy = 79F19D9D9537EA2700000000 /* PBXContainerItemProxy */; + targetProxy = 7571235F9D198C3700000000 /* PBXContainerItemProxy */; }; - EC2CE7DA98631CBF00000000 /* PBXTargetDependency */ = { + C8719450A5AC836500000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E50198631CBE00000000 /* _idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_7F9F05C6_ios_min15.5 */; - targetProxy = 79F19D9D98631CBF00000000 /* PBXContainerItemProxy */; + targetProxy = 7571235FA5AC836500000000 /* PBXContainerItemProxy */; }; - EC2CE7DA98D05C4B00000000 /* PBXTargetDependency */ = { + C8719450ACE90FE300000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E50198D05C4A00000000 /* _idx_gl_calculator_helper_D8986C65_ios_min15.5 */; - targetProxy = 79F19D9D98D05C4B00000000 /* PBXContainerItemProxy */; + targetProxy = 7571235FACE90FE300000000 /* PBXContainerItemProxy */; }; - EC2CE7DAB052EDC900000000 /* PBXTargetDependency */ = { + C8719450B474037D00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = B0D91B25B052EDC800000000 /* _bazel_clean_ */; - targetProxy = 79F19D9DB052EDC900000000 /* PBXContainerItemProxy */; + targetProxy = 7571235FB474037D00000000 /* PBXContainerItemProxy */; }; - EC2CE7DABA73597300000000 /* PBXTargetDependency */ = { + C8719450B67384D100000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E501BA73597200000000 /* _idx_gpu_buffer_multi_pool_gl_context_4D0E07B8_ios_min11.0 */; - targetProxy = 79F19D9DBA73597300000000 /* PBXContainerItemProxy */; + targetProxy = 7571235FB67384D100000000 /* PBXContainerItemProxy */; }; - EC2CE7DABBDDDAB900000000 /* PBXTargetDependency */ = { + C8719450B784310700000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E501BBDDDAB800000000 /* _idx_mediapipe_framework_ios_E5983FAB_ios_min11.0 */; - targetProxy = 79F19D9DBBDDDAB900000000 /* PBXContainerItemProxy */; + targetProxy = 7571235FB784310700000000 /* PBXContainerItemProxy */; }; - EC2CE7DABE53424B00000000 /* PBXTargetDependency */ = { + C8719450BAB5C57F00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E501BE53424A00000000 /* _idx_gpu_buffer_multi_pool_gl_context_4D0E07B8_ios_min15.5 */; - targetProxy = 79F19D9DBE53424B00000000 /* PBXContainerItemProxy */; + targetProxy = 7571235FBAB5C57F00000000 /* PBXContainerItemProxy */; }; - EC2CE7DABFC8082300000000 /* PBXTargetDependency */ = { + C8719450BAEEE68700000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E501BFC8082200000000 /* _idx_shader_util_F77AE4F3_ios_min15.5 */; - targetProxy = 79F19D9DBFC8082300000000 /* PBXContainerItemProxy */; + targetProxy = 7571235FBAEEE68700000000 /* PBXContainerItemProxy */; }; - EC2CE7DAC7D8DFDF00000000 /* PBXTargetDependency */ = { + C8719450BCE0083900000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E501C7D8DFDE00000000 /* _idx_max_unpooling_max_pool_argmax_92E156D6_ios_min11.0 */; - targetProxy = 79F19D9DC7D8DFDF00000000 /* PBXContainerItemProxy */; + targetProxy = 7571235FBCE0083900000000 /* PBXContainerItemProxy */; }; - EC2CE7DAD05A039B00000000 /* PBXTargetDependency */ = { + C8719450C415A01D00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E501D05A039A00000000 /* _idx_resource_util_B6FA1F0B_ios_min15.5 */; - targetProxy = 79F19D9DD05A039B00000000 /* PBXContainerItemProxy */; + targetProxy = 7571235FC415A01D00000000 /* PBXContainerItemProxy */; }; - EC2CE7DAD40A970700000000 /* PBXTargetDependency */ = { + C8719450C4F8B64100000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E501D40A970600000000 /* _idx_pixel_buffer_pool_util_1B0D8C74_ios_min15.5 */; - targetProxy = 79F19D9DD40A970700000000 /* PBXContainerItemProxy */; + targetProxy = 7571235FC4F8B64100000000 /* PBXContainerItemProxy */; }; - EC2CE7DAD5C6ED8300000000 /* PBXTargetDependency */ = { + C8719450CB8F507D00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E501D5C6ED8200000000 /* _idx_image_properties_calculator_gpu_service_6BF370A2_ios_min15.5 */; - targetProxy = 79F19D9DD5C6ED8300000000 /* PBXContainerItemProxy */; + targetProxy = 7571235FCB8F507D00000000 /* PBXContainerItemProxy */; }; - EC2CE7DAD625937500000000 /* PBXTargetDependency */ = { + C8719450CF5F5EE700000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E501D625937400000000 /* _idx_inference_calculator_interface_inference_calculator_cpu_AEFE6570_ios_min11.0 */; - targetProxy = 79F19D9DD625937500000000 /* PBXContainerItemProxy */; + targetProxy = 7571235FCF5F5EE700000000 /* PBXContainerItemProxy */; }; - EC2CE7DAD971168F00000000 /* PBXTargetDependency */ = { + C8719450D2A53B2100000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E501D971168E00000000 /* _idx_olamodule_common_library_4A2D4D8A_ios_min15.5 */; - targetProxy = 79F19D9DD971168F00000000 /* PBXContainerItemProxy */; + targetProxy = 7571235FD2A53B2100000000 /* PBXContainerItemProxy */; }; - EC2CE7DAD9E967BF00000000 /* PBXTargetDependency */ = { + C8719450D2C9CDB900000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E501D9E967BE00000000 /* _idx_annotation_renderer_BE836363_ios_min15.5 */; - targetProxy = 79F19D9DD9E967BF00000000 /* PBXContainerItemProxy */; + targetProxy = 7571235FD2C9CDB900000000 /* PBXContainerItemProxy */; }; - EC2CE7DAE12D6E0F00000000 /* PBXTargetDependency */ = { + C8719450D320929F00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E501E12D6E0E00000000 /* _idx_gl_simple_shaders_6A91D77D_ios_min11.0 */; - targetProxy = 79F19D9DE12D6E0F00000000 /* PBXContainerItemProxy */; + targetProxy = 7571235FD320929F00000000 /* PBXContainerItemProxy */; }; - EC2CE7DAE1EABCB700000000 /* PBXTargetDependency */ = { + C8719450D3EB570900000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E501E1EABCB600000000 /* _idx_inference_calculator_interface_inference_calculator_cpu_AEFE6570_ios_min15.5 */; - targetProxy = 79F19D9DE1EABCB700000000 /* PBXContainerItemProxy */; + targetProxy = 7571235FD3EB570900000000 /* PBXContainerItemProxy */; }; - EC2CE7DAE67C2A1B00000000 /* PBXTargetDependency */ = { + C8719450DCA2423700000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E501E67C2A1A00000000 /* _idx_ref_gpuimagemath_gpuimageutil_8BF43A5D_ios_min11.0 */; - targetProxy = 79F19D9DE67C2A1B00000000 /* PBXContainerItemProxy */; + targetProxy = 7571235FDCA2423700000000 /* PBXContainerItemProxy */; }; - EC2CE7DAF07E016F00000000 /* PBXTargetDependency */ = { + C8719450E5D2ED5700000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E501F07E016E00000000 /* _idx_olamodule_common_library_4A2D4D8A_ios_min11.0 */; - targetProxy = 79F19D9DF07E016F00000000 /* PBXContainerItemProxy */; + targetProxy = 7571235FE5D2ED5700000000 /* PBXContainerItemProxy */; }; - EC2CE7DAF3D581C900000000 /* PBXTargetDependency */ = { + C8719450EC4DADE300000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E501F3D581C800000000 /* _idx_math_3043B97F_ios_min15.5 */; - targetProxy = 79F19D9DF3D581C900000000 /* PBXContainerItemProxy */; + targetProxy = 7571235FEC4DADE300000000 /* PBXContainerItemProxy */; }; - EC2CE7DAF57C17F100000000 /* PBXTargetDependency */ = { + C8719450EEDCEF1900000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E501F57C17F000000000 /* _idx_FaceMeshGPULibrary_2BF20B88_ios_min15.5 */; - targetProxy = 79F19D9DF57C17F100000000 /* PBXContainerItemProxy */; + targetProxy = 7571235FEEDCEF1900000000 /* PBXContainerItemProxy */; }; - EC2CE7DAF70D126B00000000 /* PBXTargetDependency */ = { + C8719450F4D779E300000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E501F70D126A00000000 /* _idx_MPPMetalHelper_7397E6A5_ios_min11.0 */; - targetProxy = 79F19D9DF70D126B00000000 /* PBXContainerItemProxy */; + targetProxy = 7571235FF4D779E300000000 /* PBXContainerItemProxy */; }; - EC2CE7DAF727D6E300000000 /* PBXTargetDependency */ = { + C8719450F5035E2500000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E501F727D6E200000000 /* _idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_7F9F05C6_ios_min11.0 */; - targetProxy = 79F19D9DF727D6E300000000 /* PBXContainerItemProxy */; + targetProxy = 7571235FF5035E2500000000 /* PBXContainerItemProxy */; }; - EC2CE7DAF8F8F01D00000000 /* PBXTargetDependency */ = { + C8719450FB58229B00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E501F8F8F01C00000000 /* _idx_util_28409609_ios_min15.5 */; - targetProxy = 79F19D9DF8F8F01D00000000 /* PBXContainerItemProxy */; + targetProxy = 7571235FFB58229B00000000 /* PBXContainerItemProxy */; }; - EC2CE7DAFE323FCF00000000 /* PBXTargetDependency */ = { + C8719450FD5CA03100000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D807E501FE323FCE00000000 /* _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_26C42D3D_ios_min11.0 */; - targetProxy = 79F19D9DFE323FCF00000000 /* PBXContainerItemProxy */; + targetProxy = 7571235FFD5CA03100000000 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ - 36A6E5D7288691D200169063 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = NO; - GCC_DYNAMIC_NO_PIC = NO; - GCC_OPTIMIZATION_LEVEL = 0; - PRODUCT_NAME = _bazel_clean_; - }; - name = Debug; - }; - 36A6E5D8288691D200169063 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = YES; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - PRODUCT_NAME = _bazel_clean_; - }; - name = Release; - }; - 36A6E5D9288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _bazel_clean_; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E5DA288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _bazel_clean_; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E5DB288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_FaceMeshGPULibrary_2BF20B88_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E5DC288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_FaceMeshGPULibrary_2BF20B88_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E5DD288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_FaceMeshGPULibrary_2BF20B88_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E5DE288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_FaceMeshGPULibrary_2BF20B88_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E5DF288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_MPPGraphGPUData_733A9D5A_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E5E0288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_MPPGraphGPUData_733A9D5A_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E5E1288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_MPPGraphGPUData_733A9D5A_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E5E2288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_MPPGraphGPUData_733A9D5A_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E5E3288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_MPPMetalHelper_7397E6A5_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E5E4288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_MPPMetalHelper_7397E6A5_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E5E5288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_MPPMetalHelper_7397E6A5_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E5E6288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_MPPMetalHelper_7397E6A5_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E5E7288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_MPPMetalUtil_E63D8158_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E5E8288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_MPPMetalUtil_E63D8158_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E5E9288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_MPPMetalUtil_E63D8158_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E5EA288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_MPPMetalUtil_E63D8158_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E5EB288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_OlaFaceUnityLibrary_5CE49B93_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E5EC288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_OlaFaceUnityLibrary_5CE49B93_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E5ED288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_OlaFaceUnityLibrary_5CE49B93_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E5EE288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_OlaFaceUnityLibrary_5CE49B93_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E5EF288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_annotation_overlay_calculator_7B50CB48_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E5F0288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_annotation_overlay_calculator_7B50CB48_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E5F1288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_annotation_overlay_calculator_7B50CB48_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E5F2288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_annotation_overlay_calculator_7B50CB48_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E5F3288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_annotation_renderer_BE836363_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E5F4288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_annotation_renderer_BE836363_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E5F5288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_annotation_renderer_BE836363_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E5F6288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_annotation_renderer_BE836363_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E5F7288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_begin_loop_calculator_FEDA75EA_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E5F8288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_begin_loop_calculator_FEDA75EA_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E5F9288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_begin_loop_calculator_FEDA75EA_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E5FA288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_begin_loop_calculator_FEDA75EA_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E5FB288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_clip_vector_size_calculator_02FA2733_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E5FC288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_clip_vector_size_calculator_02FA2733_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E5FD288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_clip_vector_size_calculator_02FA2733_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E5FE288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_clip_vector_size_calculator_02FA2733_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E5FF288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = "_idx_core_core-ios_4EDC2AF0_ios_min11.0"; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E600288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = "_idx_core_core-ios_4EDC2AF0_ios_min11.0"; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E601288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = "_idx_core_core-ios_4EDC2AF0_ios_min15.5"; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E602288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = "_idx_core_core-ios_4EDC2AF0_ios_min15.5"; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E603288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_cpu_op_resolver_741B9450_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E604288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_cpu_op_resolver_741B9450_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E605288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_cpu_op_resolver_741B9450_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E606288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_cpu_op_resolver_741B9450_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E607288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_cpu_util_B64315B8_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E608288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_cpu_util_B64315B8_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E609288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_cpu_util_B64315B8_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E60A288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_cpu_util_B64315B8_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E60B288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_detection_projection_calculator_9B95E740_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E60C288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_detection_projection_calculator_9B95E740_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E60D288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_detection_projection_calculator_9B95E740_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E60E288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_detection_projection_calculator_9B95E740_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E60F288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_gl_calculator_helper_D8986C65_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E610288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_gl_calculator_helper_D8986C65_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E611288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_gl_calculator_helper_D8986C65_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E612288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_gl_calculator_helper_D8986C65_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E613288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_gl_simple_shaders_6A91D77D_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E614288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_gl_simple_shaders_6A91D77D_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E615288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_gl_simple_shaders_6A91D77D_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E616288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_gl_simple_shaders_6A91D77D_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E617288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_gpu_buffer_multi_pool_gl_context_4D0E07B8_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E618288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_gpu_buffer_multi_pool_gl_context_4D0E07B8_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E619288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_gpu_buffer_multi_pool_gl_context_4D0E07B8_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E61A288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_gpu_buffer_multi_pool_gl_context_4D0E07B8_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E61B288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_26C42D3D_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E61C288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_26C42D3D_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E61D288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_26C42D3D_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E61E288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_26C42D3D_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E61F288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_gpu_buffer_storage_gpu_buffer_format_BA46520A_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E620288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_gpu_buffer_storage_gpu_buffer_format_BA46520A_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E621288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_gpu_buffer_storage_gpu_buffer_format_BA46520A_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E622288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_gpu_buffer_storage_gpu_buffer_format_BA46520A_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E623288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_image_properties_calculator_gpu_service_6BF370A2_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E624288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_image_properties_calculator_gpu_service_6BF370A2_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E625288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_image_properties_calculator_gpu_service_6BF370A2_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E626288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_image_properties_calculator_gpu_service_6BF370A2_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E627288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_image_to_tensor_calculator_C3DB5E1E_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E628288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_image_to_tensor_calculator_C3DB5E1E_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E629288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_image_to_tensor_calculator_C3DB5E1E_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E62A288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_image_to_tensor_calculator_C3DB5E1E_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E62B288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_image_to_tensor_converter_metal_9AA64D0A_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E62C288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_image_to_tensor_converter_metal_9AA64D0A_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E62D288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_image_to_tensor_converter_metal_9AA64D0A_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E62E288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_image_to_tensor_converter_metal_9AA64D0A_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E62F288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_image_to_tensor_converter_opencv_F40C896E_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E630288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_image_to_tensor_converter_opencv_F40C896E_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E631288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_image_to_tensor_converter_opencv_F40C896E_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E632288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_image_to_tensor_converter_opencv_F40C896E_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E633288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_inference_calculator_interface_inference_calculator_cpu_AEFE6570_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E634288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_inference_calculator_interface_inference_calculator_cpu_AEFE6570_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E635288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_inference_calculator_interface_inference_calculator_cpu_AEFE6570_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E636288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_inference_calculator_interface_inference_calculator_cpu_AEFE6570_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E637288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_inference_calculator_metal_712F45E9_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E638288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_inference_calculator_metal_712F45E9_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E639288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_inference_calculator_metal_712F45E9_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E63A288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_inference_calculator_metal_712F45E9_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E63B288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_math_3043B97F_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E63C288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_math_3043B97F_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E63D288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_math_3043B97F_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E63E288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_math_3043B97F_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E63F288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_max_unpooling_max_pool_argmax_92E156D6_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E640288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_max_unpooling_max_pool_argmax_92E156D6_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E641288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_max_unpooling_max_pool_argmax_92E156D6_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E642288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_max_unpooling_max_pool_argmax_92E156D6_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E643288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_mediapipe_framework_ios_E5983FAB_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E644288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_mediapipe_framework_ios_E5983FAB_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E645288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_mediapipe_framework_ios_E5983FAB_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E646288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_mediapipe_framework_ios_E5983FAB_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E647288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_non_max_suppression_calculator_EA803631_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E648288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_non_max_suppression_calculator_EA803631_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E649288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_non_max_suppression_calculator_EA803631_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E64A288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_non_max_suppression_calculator_EA803631_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E64B288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_olamodule_common_library_4A2D4D8A_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E64C288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_olamodule_common_library_4A2D4D8A_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E64D288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_olamodule_common_library_4A2D4D8A_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E64E288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_olamodule_common_library_4A2D4D8A_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E64F288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_op_resolver_E390FDC7_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E650288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_op_resolver_E390FDC7_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E651288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_op_resolver_E390FDC7_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E652288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_op_resolver_E390FDC7_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E653288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_pixel_buffer_pool_util_1B0D8C74_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E654288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_pixel_buffer_pool_util_1B0D8C74_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E655288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_pixel_buffer_pool_util_1B0D8C74_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E656288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_pixel_buffer_pool_util_1B0D8C74_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E657288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_previous_loopback_calculator_header_util_D9AEB78A_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E658288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_previous_loopback_calculator_header_util_D9AEB78A_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E659288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_previous_loopback_calculator_header_util_D9AEB78A_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E65A288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_previous_loopback_calculator_header_util_D9AEB78A_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E65B288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_7F9F05C6_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E65C288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_7F9F05C6_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E65D288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_7F9F05C6_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E65E288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_7F9F05C6_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E65F288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_ref_gpuimagemath_gpuimageutil_8BF43A5D_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E660288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_ref_gpuimagemath_gpuimageutil_8BF43A5D_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E661288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_ref_gpuimagemath_gpuimageutil_8BF43A5D_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E662288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_ref_gpuimagemath_gpuimageutil_8BF43A5D_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E663288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_resource_util_B6FA1F0B_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E664288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_resource_util_B6FA1F0B_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E665288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_resource_util_B6FA1F0B_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E666288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_resource_util_B6FA1F0B_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E667288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_shader_util_F77AE4F3_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E668288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_shader_util_F77AE4F3_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E669288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_shader_util_F77AE4F3_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E66A288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_shader_util_F77AE4F3_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E66B288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_split_vector_calculator_6654799A_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E66C288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_split_vector_calculator_6654799A_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E66D288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_split_vector_calculator_6654799A_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E66E288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_split_vector_calculator_6654799A_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E66F288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_tensors_to_detections_calculator_888E512F_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E670288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_tensors_to_detections_calculator_888E512F_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E671288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_tensors_to_detections_calculator_888E512F_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E672288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_tensors_to_detections_calculator_888E512F_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E673288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_7ED8D1B5_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E674288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_7ED8D1B5_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E675288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_7ED8D1B5_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E676288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_7ED8D1B5_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E677288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_tflite_custom_op_resolver_calculator_042597A8_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E678288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_tflite_custom_op_resolver_calculator_042597A8_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E679288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_tflite_custom_op_resolver_calculator_042597A8_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E67A288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_tflite_custom_op_resolver_calculator_042597A8_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E67B288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_tflite_model_calculator_end_loop_calculator_6A228ACC_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E67C288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_tflite_model_calculator_end_loop_calculator_6A228ACC_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E67D288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_tflite_model_calculator_end_loop_calculator_6A228ACC_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E67E288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_tflite_model_calculator_end_loop_calculator_6A228ACC_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E67F288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_tflite_model_loader_F900857E_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E680288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_tflite_model_loader_F900857E_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E681288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_tflite_model_loader_F900857E_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E682288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_tflite_model_loader_F900857E_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E683288691D200169063 /* __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_A15F304E_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E684288691D200169063 /* __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_A15F304E_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E685288691D200169063 /* __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_A15F304E_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E686288691D200169063 /* __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_A15F304E_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E687288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_AB0D0716_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E688288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_AB0D0716_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E689288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_AB0D0716_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E68A288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_AB0D0716_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E68B288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_transpose_conv_bias_207EFBC1_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E68C288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_transpose_conv_bias_207EFBC1_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E68D288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_transpose_conv_bias_207EFBC1_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E68E288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_transpose_conv_bias_207EFBC1_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E68F288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_util_28409609_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E690288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_util_28409609_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 36A6E691288691D200169063 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_util_28409609_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 36A6E692288691D200169063 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_util_28409609_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 89A98AE65559229700000000 /* Debug */ = { + C75F0BC26AFB9FA200000000 /* __TulsiTestRunner_Debug */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; @@ -5929,7 +4560,7 @@ CODE_SIGN_IDENTITY = ""; DONT_RUN_SWIFT_STDLIB_TOOL = YES; ENABLE_TESTABILITY = YES; - FRAMEWORK_SEARCH_PATHS = "$(PLATFORM_DIR)/Developer/Library/Frameworks"; + FRAMEWORK_SEARCH_PATHS = ""; GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; GCC_WARN_64_TO_32_BIT_CONVERSION = YES; GCC_WARN_ABOUT_RETURN_TYPE = YES; @@ -5937,15 +4568,15 @@ 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 = ""; 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"; @@ -5954,4554 +4585,58 @@ TULSI_VERSION = 0.20220209.88; TULSI_WR = "${SRCROOT}/../../../../.."; }; - name = Debug; + name = __TulsiTestRunner_Debug; }; - 89A98AE65559229700000001 /* Debug */ = { + C75F0BC26AFB9FA200000001 /* __TulsiTestRunner_Debug */ = { isa = XCBuildConfiguration; buildSettings = { ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = "Stub Launch Image"; BAZEL_TARGET = "//mediapipe/render/module/beauty/ios: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; TULSI_XCODE_VERSION = 13.4.1.13F100; }; - name = Debug; + name = __TulsiTestRunner_Debug; }; - 89A98AE65559229700000002 /* 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 = ( - "-std=c++17", - "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0", - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DPTHREADPOOL_NO_DEPRECATED_API", - "-DTFLITE_BUILD_WITH_XNNPACK_DELEGATE", - "-DTFLITE_WITH_RUY", - "-DXNN_ENABLE_ASSEMBLY=1", - "-DXNN_ENABLE_JIT=0", - "-DXNN_ENABLE_MEMOPT=1", - "-DXNN_ENABLE_SPARSE=1", - "-DXNN_LOG_LEVEL=5", - "-DXNN_NO_QU8_OPERATORS", - "-DXNN_NO_U8_OPERATORS", - "-DXNN_WASMSIMD_VERSION=87", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_FaceMeshGPULibrary_2BF20B88_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000003 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-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", - "$(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 = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_olamodule_common_library_4A2D4D8A_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000004 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_util_28409609_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000005 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_pixel_buffer_pool_util_1B0D8C74_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000006 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - ); - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_cpu_util_B64315B8_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000007 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_26C42D3D_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000008 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_gpu_buffer_storage_gpu_buffer_format_BA46520A_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000009 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-x", - "objective-c++", - "-fobjc-arc", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_gpu_buffer_multi_pool_gl_context_4D0E07B8_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE6555922970000000A /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_WR)/mediapipe/render/core/math", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math", - ); - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-x", - "objective-c++", - "-fobjc-arc", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = "_idx_core_core-ios_4EDC2AF0_ios_min11.0"; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE6555922970000000B /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - ); - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_ref_gpuimagemath_gpuimageutil_8BF43A5D_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE6555922970000000C /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_WR)/mediapipe/render/core/math", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math", - ); - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_math_3043B97F_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE6555922970000000D /* 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 = ( - "-std=c++17", - "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0", - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DPTHREADPOOL_NO_DEPRECATED_API", - "-DTFLITE_BUILD_WITH_XNNPACK_DELEGATE", - "-DTFLITE_WITH_RUY", - "-DXNN_ENABLE_ASSEMBLY=1", - "-DXNN_ENABLE_JIT=0", - "-DXNN_ENABLE_MEMOPT=1", - "-DXNN_ENABLE_SPARSE=1", - "-DXNN_LOG_LEVEL=5", - "-DXNN_NO_QU8_OPERATORS", - "-DXNN_NO_U8_OPERATORS", - "-DXNN_WASMSIMD_VERSION=87", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_FaceMeshGPULibrary_2BF20B88_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE6555922970000000E /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-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", - "$(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 = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_olamodule_common_library_4A2D4D8A_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE6555922970000000F /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_WR)/mediapipe/render/core/math", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-x", - "objective-c++", - "-fobjc-arc", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = "_idx_core_core-ios_4EDC2AF0_ios_min15.5"; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000010 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_ref_gpuimagemath_gpuimageutil_8BF43A5D_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000011 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_WR)/mediapipe/render/core/math", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_math_3043B97F_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000012 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_pixel_buffer_pool_util_1B0D8C74_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000013 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_util_28409609_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000014 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_26C42D3D_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000015 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_gpu_buffer_storage_gpu_buffer_format_BA46520A_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000016 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-x", - "objective-c++", - "-fobjc-arc", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_gpu_buffer_multi_pool_gl_context_4D0E07B8_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000017 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_cpu_util_B64315B8_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000018 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-x", - "objective-c++", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_MPPGraphGPUData_733A9D5A_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000019 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-x", - "objective-c++", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_MPPGraphGPUData_733A9D5A_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE6555922970000001A /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_MPPMetalHelper_7397E6A5_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE6555922970000001B /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_mediapipe_framework_ios_E5983FAB_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE6555922970000001C /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_MPPMetalHelper_7397E6A5_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE6555922970000001D /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_mediapipe_framework_ios_E5983FAB_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE6555922970000001E /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-x", - "objective-c++", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_MPPMetalUtil_E63D8158_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE6555922970000001F /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-x", - "objective-c++", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_MPPMetalUtil_E63D8158_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000020 /* 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_WR)/mediapipe/render/core/math", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src", - "$(TULSI_OUTPUT_BASE)/external/FP16/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include", - "$(TULSI_OUTPUT_BASE)/external/FXdiv/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common", - ); - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0", - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DPTHREADPOOL_NO_DEPRECATED_API", - "-DTFLITE_BUILD_WITH_XNNPACK_DELEGATE", - "-DTFLITE_WITH_RUY", - "-DXNN_ENABLE_ASSEMBLY=1", - "-DXNN_ENABLE_JIT=0", - "-DXNN_ENABLE_MEMOPT=1", - "-DXNN_ENABLE_SPARSE=1", - "-DXNN_LOG_LEVEL=5", - "-DXNN_NO_QU8_OPERATORS", - "-DXNN_NO_U8_OPERATORS", - "-DXNN_WASMSIMD_VERSION=87", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_OlaFaceUnityLibrary_5CE49B93_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000021 /* 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_WR)/mediapipe/render/core/math", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src", - "$(TULSI_OUTPUT_BASE)/external/FP16/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include", - "$(TULSI_OUTPUT_BASE)/external/FXdiv/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0", - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DPTHREADPOOL_NO_DEPRECATED_API", - "-DTFLITE_BUILD_WITH_XNNPACK_DELEGATE", - "-DTFLITE_WITH_RUY", - "-DXNN_ENABLE_ASSEMBLY=1", - "-DXNN_ENABLE_JIT=0", - "-DXNN_ENABLE_MEMOPT=1", - "-DXNN_ENABLE_SPARSE=1", - "-DXNN_LOG_LEVEL=5", - "-DXNN_NO_QU8_OPERATORS", - "-DXNN_NO_U8_OPERATORS", - "-DXNN_WASMSIMD_VERSION=87", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_OlaFaceUnityLibrary_5CE49B93_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000022 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/external/ios_opencv", - ); - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/ios_opencv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_annotation_overlay_calculator_7B50CB48_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000023 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/external/ios_opencv", - ); - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/ios_opencv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_annotation_renderer_BE836363_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000024 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - ); - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_shader_util_F77AE4F3_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000025 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_gl_calculator_helper_D8986C65_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000026 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_image_properties_calculator_gpu_service_6BF370A2_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000027 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - ); - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_gl_simple_shaders_6A91D77D_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000028 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/external/ios_opencv", - ); - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/ios_opencv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_annotation_overlay_calculator_7B50CB48_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000029 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_shader_util_F77AE4F3_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE6555922970000002A /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_gl_simple_shaders_6A91D77D_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE6555922970000002B /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/external/ios_opencv", - ); - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/ios_opencv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_annotation_renderer_BE836363_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE6555922970000002C /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_gl_calculator_helper_D8986C65_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE6555922970000002D /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_image_properties_calculator_gpu_service_6BF370A2_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE6555922970000002E /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/eigen_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_begin_loop_calculator_FEDA75EA_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE6555922970000002F /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/eigen_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_begin_loop_calculator_FEDA75EA_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000030 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - ); - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_clip_vector_size_calculator_02FA2733_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000031 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_clip_vector_size_calculator_02FA2733_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000032 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16", - "$(TULSI_OUTPUT_BASE)/external/gemmlowp", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/eigen_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo", - "$(TULSI_OUTPUT_BASE)/external/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog", - "$(TULSI_OUTPUT_BASE)/external/fft2d", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool", - "$(TULSI_OUTPUT_BASE)/external/FXdiv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv", - "$(TULSI_OUTPUT_BASE)/external/FP16/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include", - "$(TULSI_OUTPUT_BASE)/external/FXdiv/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include", - ); - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0", - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DPTHREADPOOL_NO_DEPRECATED_API", - "-DTFLITE_BUILD_WITH_XNNPACK_DELEGATE", - "-DTFLITE_WITH_RUY", - "-DXNN_ENABLE_ASSEMBLY=1", - "-DXNN_ENABLE_JIT=0", - "-DXNN_ENABLE_MEMOPT=1", - "-DXNN_ENABLE_SPARSE=1", - "-DXNN_LOG_LEVEL=5", - "-DXNN_NO_QU8_OPERATORS", - "-DXNN_NO_U8_OPERATORS", - "-DXNN_WASMSIMD_VERSION=87", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_cpu_op_resolver_741B9450_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000033 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/gemmlowp", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp", - "$(TULSI_OUTPUT_BASE)/external/eigen_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo", - "$(TULSI_OUTPUT_BASE)/external/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog", - ); - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DTFLITE_WITH_RUY", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_max_unpooling_max_pool_argmax_92E156D6_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000034 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16", - "$(TULSI_OUTPUT_BASE)/external/gemmlowp", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/eigen_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo", - "$(TULSI_OUTPUT_BASE)/external/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog", - "$(TULSI_OUTPUT_BASE)/external/FP16/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - ); - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DTFLITE_WITH_RUY", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_AB0D0716_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000035 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/eigen_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive", - "$(TULSI_OUTPUT_BASE)/external/gemmlowp", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo", - "$(TULSI_OUTPUT_BASE)/external/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog", - ); - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DTFLITE_WITH_RUY", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_transpose_conv_bias_207EFBC1_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000036 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16", - "$(TULSI_OUTPUT_BASE)/external/gemmlowp", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/eigen_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo", - "$(TULSI_OUTPUT_BASE)/external/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog", - "$(TULSI_OUTPUT_BASE)/external/fft2d", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool", - "$(TULSI_OUTPUT_BASE)/external/FXdiv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv", - "$(TULSI_OUTPUT_BASE)/external/FP16/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include", - "$(TULSI_OUTPUT_BASE)/external/FXdiv/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0", - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DPTHREADPOOL_NO_DEPRECATED_API", - "-DTFLITE_BUILD_WITH_XNNPACK_DELEGATE", - "-DTFLITE_WITH_RUY", - "-DXNN_ENABLE_ASSEMBLY=1", - "-DXNN_ENABLE_JIT=0", - "-DXNN_ENABLE_MEMOPT=1", - "-DXNN_ENABLE_SPARSE=1", - "-DXNN_LOG_LEVEL=5", - "-DXNN_NO_QU8_OPERATORS", - "-DXNN_NO_U8_OPERATORS", - "-DXNN_WASMSIMD_VERSION=87", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_cpu_op_resolver_741B9450_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000037 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/gemmlowp", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp", - "$(TULSI_OUTPUT_BASE)/external/eigen_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo", - "$(TULSI_OUTPUT_BASE)/external/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DTFLITE_WITH_RUY", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_max_unpooling_max_pool_argmax_92E156D6_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000038 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/eigen_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive", - "$(TULSI_OUTPUT_BASE)/external/gemmlowp", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo", - "$(TULSI_OUTPUT_BASE)/external/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DTFLITE_WITH_RUY", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_transpose_conv_bias_207EFBC1_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000039 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16", - "$(TULSI_OUTPUT_BASE)/external/gemmlowp", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/eigen_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo", - "$(TULSI_OUTPUT_BASE)/external/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog", - "$(TULSI_OUTPUT_BASE)/external/FP16/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DTFLITE_WITH_RUY", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_AB0D0716_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE6555922970000003A /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/external/ios_opencv", - ); - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/ios_opencv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_detection_projection_calculator_9B95E740_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE6555922970000003B /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/external/ios_opencv", - ); - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/ios_opencv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_detection_projection_calculator_9B95E740_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE6555922970000003C /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/external/ios_opencv", - ); - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16", - "$(TULSI_OUTPUT_BASE)/external/ios_opencv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - "$(TULSI_OUTPUT_BASE)/external/FP16/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include", - ); - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-x", - "objective-c++", - "-fobjc-arc", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_image_to_tensor_calculator_C3DB5E1E_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE6555922970000003D /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/external/ios_opencv", - ); - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/ios_opencv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-x", - "objective-c++", - "-fobjc-arc", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_image_to_tensor_converter_opencv_F40C896E_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE6555922970000003E /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_7F9F05C6_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE6555922970000003F /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/external/ios_opencv", - ); - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16", - "$(TULSI_OUTPUT_BASE)/external/ios_opencv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - "$(TULSI_OUTPUT_BASE)/external/FP16/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-x", - "objective-c++", - "-fobjc-arc", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_image_to_tensor_calculator_C3DB5E1E_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000040 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_7F9F05C6_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000041 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/external/ios_opencv", - ); - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/ios_opencv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-x", - "objective-c++", - "-fobjc-arc", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_image_to_tensor_converter_opencv_F40C896E_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000042 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - "$(TULSI_OUTPUT_BASE)/external/FP16/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include", - ); - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-x", - "objective-c++", - "-fobjc-arc", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_image_to_tensor_converter_metal_9AA64D0A_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000043 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - "$(TULSI_OUTPUT_BASE)/external/FP16/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-x", - "objective-c++", - "-fobjc-arc", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_image_to_tensor_converter_metal_9AA64D0A_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000044 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo", - "$(TULSI_OUTPUT_BASE)/external/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog", - "$(TULSI_OUTPUT_BASE)/external/gemmlowp", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp", - "$(TULSI_OUTPUT_BASE)/external/eigen_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive", - "$(TULSI_OUTPUT_BASE)/external/fft2d", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive", - "$(TULSI_OUTPUT_BASE)/external/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool", - "$(TULSI_OUTPUT_BASE)/external/FXdiv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src", - "$(TULSI_OUTPUT_BASE)/external/FP16/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include", - "$(TULSI_OUTPUT_BASE)/external/FXdiv/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include", - ); - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-x", - "objective-c++", - "-fobjc-arc", - "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0", - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DPTHREADPOOL_NO_DEPRECATED_API", - "-DTFLITE_BUILD_WITH_XNNPACK_DELEGATE", - "-DTFLITE_WITH_RUY", - "-DXNN_ENABLE_ASSEMBLY=1", - "-DXNN_ENABLE_JIT=0", - "-DXNN_ENABLE_MEMOPT=1", - "-DXNN_ENABLE_SPARSE=1", - "-DXNN_LOG_LEVEL=5", - "-DXNN_NO_QU8_OPERATORS", - "-DXNN_NO_U8_OPERATORS", - "-DXNN_WASMSIMD_VERSION=87", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_inference_calculator_interface_inference_calculator_cpu_AEFE6570_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000045 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - ); - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_tflite_model_loader_F900857E_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000046 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - ); - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-ObjC++", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_resource_util_B6FA1F0B_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000047 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo", - "$(TULSI_OUTPUT_BASE)/external/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog", - "$(TULSI_OUTPUT_BASE)/external/gemmlowp", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp", - "$(TULSI_OUTPUT_BASE)/external/eigen_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive", - "$(TULSI_OUTPUT_BASE)/external/fft2d", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive", - "$(TULSI_OUTPUT_BASE)/external/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool", - "$(TULSI_OUTPUT_BASE)/external/FXdiv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src", - "$(TULSI_OUTPUT_BASE)/external/FP16/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include", - "$(TULSI_OUTPUT_BASE)/external/FXdiv/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-x", - "objective-c++", - "-fobjc-arc", - "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0", - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DPTHREADPOOL_NO_DEPRECATED_API", - "-DTFLITE_BUILD_WITH_XNNPACK_DELEGATE", - "-DTFLITE_WITH_RUY", - "-DXNN_ENABLE_ASSEMBLY=1", - "-DXNN_ENABLE_JIT=0", - "-DXNN_ENABLE_MEMOPT=1", - "-DXNN_ENABLE_SPARSE=1", - "-DXNN_LOG_LEVEL=5", - "-DXNN_NO_QU8_OPERATORS", - "-DXNN_NO_U8_OPERATORS", - "-DXNN_WASMSIMD_VERSION=87", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_inference_calculator_interface_inference_calculator_cpu_AEFE6570_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000048 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_tflite_model_loader_F900857E_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000049 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-ObjC++", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_resource_util_B6FA1F0B_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE6555922970000004A /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo", - "$(TULSI_OUTPUT_BASE)/external/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog", - "$(TULSI_OUTPUT_BASE)/external/gemmlowp", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp", - "$(TULSI_OUTPUT_BASE)/external/eigen_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive", - "$(TULSI_OUTPUT_BASE)/external/fft2d", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive", - "$(TULSI_OUTPUT_BASE)/external/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool", - "$(TULSI_OUTPUT_BASE)/external/FXdiv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src", - "$(TULSI_OUTPUT_BASE)/external/FP16/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include", - "$(TULSI_OUTPUT_BASE)/external/FXdiv/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common", - ); - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-x", - "objective-c++", - "-fobjc-arc", - "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0", - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DPTHREADPOOL_NO_DEPRECATED_API", - "-DTFLITE_BUILD_WITH_XNNPACK_DELEGATE", - "-DTFLITE_WITH_RUY", - "-DXNN_ENABLE_ASSEMBLY=1", - "-DXNN_ENABLE_JIT=0", - "-DXNN_ENABLE_MEMOPT=1", - "-DXNN_ENABLE_SPARSE=1", - "-DXNN_LOG_LEVEL=5", - "-DXNN_NO_QU8_OPERATORS", - "-DXNN_NO_U8_OPERATORS", - "-DXNN_WASMSIMD_VERSION=87", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_inference_calculator_metal_712F45E9_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE6555922970000004B /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo", - "$(TULSI_OUTPUT_BASE)/external/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog", - "$(TULSI_OUTPUT_BASE)/external/gemmlowp", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp", - "$(TULSI_OUTPUT_BASE)/external/eigen_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive", - "$(TULSI_OUTPUT_BASE)/external/fft2d", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive", - "$(TULSI_OUTPUT_BASE)/external/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool", - "$(TULSI_OUTPUT_BASE)/external/FXdiv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src", - "$(TULSI_OUTPUT_BASE)/external/FP16/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include", - "$(TULSI_OUTPUT_BASE)/external/FXdiv/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-x", - "objective-c++", - "-fobjc-arc", - "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0", - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DPTHREADPOOL_NO_DEPRECATED_API", - "-DTFLITE_BUILD_WITH_XNNPACK_DELEGATE", - "-DTFLITE_WITH_RUY", - "-DXNN_ENABLE_ASSEMBLY=1", - "-DXNN_ENABLE_JIT=0", - "-DXNN_ENABLE_MEMOPT=1", - "-DXNN_ENABLE_SPARSE=1", - "-DXNN_LOG_LEVEL=5", - "-DXNN_NO_QU8_OPERATORS", - "-DXNN_NO_U8_OPERATORS", - "-DXNN_WASMSIMD_VERSION=87", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_inference_calculator_metal_712F45E9_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE6555922970000004C /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/external/ios_opencv", - ); - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/ios_opencv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_non_max_suppression_calculator_EA803631_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE6555922970000004D /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/external/ios_opencv", - ); - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/ios_opencv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_non_max_suppression_calculator_EA803631_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE6555922970000004E /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo", - "$(TULSI_OUTPUT_BASE)/external/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog", - "$(TULSI_OUTPUT_BASE)/external/gemmlowp", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp", - "$(TULSI_OUTPUT_BASE)/external/eigen_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/fft2d", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive", - "$(TULSI_OUTPUT_BASE)/external/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool", - "$(TULSI_OUTPUT_BASE)/external/FXdiv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src", - "$(TULSI_OUTPUT_BASE)/external/FP16/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include", - "$(TULSI_OUTPUT_BASE)/external/FXdiv/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include", - ); - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0", - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DPTHREADPOOL_NO_DEPRECATED_API", - "-DTFLITE_BUILD_WITH_XNNPACK_DELEGATE", - "-DTFLITE_WITH_RUY", - "-DXNN_ENABLE_ASSEMBLY=1", - "-DXNN_ENABLE_JIT=0", - "-DXNN_ENABLE_MEMOPT=1", - "-DXNN_ENABLE_SPARSE=1", - "-DXNN_LOG_LEVEL=5", - "-DXNN_NO_QU8_OPERATORS", - "-DXNN_NO_U8_OPERATORS", - "-DXNN_WASMSIMD_VERSION=87", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_op_resolver_E390FDC7_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE6555922970000004F /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo", - "$(TULSI_OUTPUT_BASE)/external/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog", - "$(TULSI_OUTPUT_BASE)/external/gemmlowp", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp", - "$(TULSI_OUTPUT_BASE)/external/eigen_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/fft2d", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive", - "$(TULSI_OUTPUT_BASE)/external/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool", - "$(TULSI_OUTPUT_BASE)/external/FXdiv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src", - "$(TULSI_OUTPUT_BASE)/external/FP16/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include", - "$(TULSI_OUTPUT_BASE)/external/FXdiv/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0", - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DPTHREADPOOL_NO_DEPRECATED_API", - "-DTFLITE_BUILD_WITH_XNNPACK_DELEGATE", - "-DTFLITE_WITH_RUY", - "-DXNN_ENABLE_ASSEMBLY=1", - "-DXNN_ENABLE_JIT=0", - "-DXNN_ENABLE_MEMOPT=1", - "-DXNN_ENABLE_SPARSE=1", - "-DXNN_LOG_LEVEL=5", - "-DXNN_NO_QU8_OPERATORS", - "-DXNN_NO_U8_OPERATORS", - "-DXNN_WASMSIMD_VERSION=87", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_op_resolver_E390FDC7_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000050 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_previous_loopback_calculator_header_util_D9AEB78A_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000051 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_previous_loopback_calculator_header_util_D9AEB78A_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000052 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/eigen_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo", - "$(TULSI_OUTPUT_BASE)/external/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog", - "$(TULSI_OUTPUT_BASE)/external/gemmlowp", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp", - "$(TULSI_OUTPUT_BASE)/external/fft2d", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive", - "$(TULSI_OUTPUT_BASE)/external/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool", - "$(TULSI_OUTPUT_BASE)/external/FXdiv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src", - "$(TULSI_OUTPUT_BASE)/external/FP16/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include", - "$(TULSI_OUTPUT_BASE)/external/FXdiv/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include", - ); - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-x", - "objective-c++", - "-fobjc-arc", - "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0", - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DPTHREADPOOL_NO_DEPRECATED_API", - "-DTFLITE_BUILD_WITH_XNNPACK_DELEGATE", - "-DTFLITE_WITH_RUY", - "-DXNN_ENABLE_ASSEMBLY=1", - "-DXNN_ENABLE_JIT=0", - "-DXNN_ENABLE_MEMOPT=1", - "-DXNN_ENABLE_SPARSE=1", - "-DXNN_LOG_LEVEL=5", - "-DXNN_NO_QU8_OPERATORS", - "-DXNN_NO_U8_OPERATORS", - "-DXNN_WASMSIMD_VERSION=87", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_split_vector_calculator_6654799A_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000053 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/eigen_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo", - "$(TULSI_OUTPUT_BASE)/external/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog", - "$(TULSI_OUTPUT_BASE)/external/gemmlowp", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp", - "$(TULSI_OUTPUT_BASE)/external/fft2d", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive", - "$(TULSI_OUTPUT_BASE)/external/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool", - "$(TULSI_OUTPUT_BASE)/external/FXdiv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src", - "$(TULSI_OUTPUT_BASE)/external/FP16/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include", - "$(TULSI_OUTPUT_BASE)/external/FXdiv/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-x", - "objective-c++", - "-fobjc-arc", - "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0", - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DPTHREADPOOL_NO_DEPRECATED_API", - "-DTFLITE_BUILD_WITH_XNNPACK_DELEGATE", - "-DTFLITE_WITH_RUY", - "-DXNN_ENABLE_ASSEMBLY=1", - "-DXNN_ENABLE_JIT=0", - "-DXNN_ENABLE_MEMOPT=1", - "-DXNN_ENABLE_SPARSE=1", - "-DXNN_LOG_LEVEL=5", - "-DXNN_NO_QU8_OPERATORS", - "-DXNN_NO_U8_OPERATORS", - "-DXNN_WASMSIMD_VERSION=87", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_split_vector_calculator_6654799A_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000054 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/external/ios_opencv", - ); - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/ios_opencv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-x", - "objective-c++", - "-fobjc-arc", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_tensors_to_detections_calculator_888E512F_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000055 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/external/ios_opencv", - ); - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/ios_opencv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-x", - "objective-c++", - "-fobjc-arc", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_tensors_to_detections_calculator_888E512F_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000056 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-x", - "objective-c++", - "-fobjc-arc", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_7ED8D1B5_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000057 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-x", - "objective-c++", - "-fobjc-arc", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_7ED8D1B5_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000058 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16", - "$(TULSI_OUTPUT_BASE)/external/gemmlowp", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/eigen_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo", - "$(TULSI_OUTPUT_BASE)/external/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog", - "$(TULSI_OUTPUT_BASE)/external/fft2d", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool", - "$(TULSI_OUTPUT_BASE)/external/FXdiv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - "$(TULSI_OUTPUT_BASE)/external/FP16/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include", - "$(TULSI_OUTPUT_BASE)/external/FXdiv/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include", - ); - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0", - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DPTHREADPOOL_NO_DEPRECATED_API", - "-DTFLITE_BUILD_WITH_XNNPACK_DELEGATE", - "-DTFLITE_WITH_RUY", - "-DXNN_ENABLE_ASSEMBLY=1", - "-DXNN_ENABLE_JIT=0", - "-DXNN_ENABLE_MEMOPT=1", - "-DXNN_ENABLE_SPARSE=1", - "-DXNN_LOG_LEVEL=5", - "-DXNN_NO_QU8_OPERATORS", - "-DXNN_NO_U8_OPERATORS", - "-DXNN_WASMSIMD_VERSION=87", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_tflite_custom_op_resolver_calculator_042597A8_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE65559229700000059 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16", - "$(TULSI_OUTPUT_BASE)/external/gemmlowp", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/eigen_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo", - "$(TULSI_OUTPUT_BASE)/external/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog", - "$(TULSI_OUTPUT_BASE)/external/fft2d", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool", - "$(TULSI_OUTPUT_BASE)/external/FXdiv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - "$(TULSI_OUTPUT_BASE)/external/FP16/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include", - "$(TULSI_OUTPUT_BASE)/external/FXdiv/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0", - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DPTHREADPOOL_NO_DEPRECATED_API", - "-DTFLITE_BUILD_WITH_XNNPACK_DELEGATE", - "-DTFLITE_WITH_RUY", - "-DXNN_ENABLE_ASSEMBLY=1", - "-DXNN_ENABLE_JIT=0", - "-DXNN_ENABLE_MEMOPT=1", - "-DXNN_ENABLE_SPARSE=1", - "-DXNN_LOG_LEVEL=5", - "-DXNN_NO_QU8_OPERATORS", - "-DXNN_NO_U8_OPERATORS", - "-DXNN_WASMSIMD_VERSION=87", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_tflite_custom_op_resolver_calculator_042597A8_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE6555922970000005A /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - ); - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_tflite_model_calculator_end_loop_calculator_6A228ACC_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE6555922970000005B /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_tflite_model_calculator_end_loop_calculator_6A228ACC_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE6555922970000005C /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_A15F304E_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE6555922970000005D /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_A15F304E_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - 89A98AE6555922970000005E /* Debug */ = { + C75F0BC26AFB9FA200000002 /* __TulsiTestRunner_Debug */ = { isa = XCBuildConfiguration; buildSettings = { ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = "Stub Launch Image"; BAZEL_TARGET = "//mediapipe/render/module/beauty/ios: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; + 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-OlaFaceUnityLibrary"; SDKROOT = iphoneos; + SWIFT_INSTALL_OBJC_HEADER = NO; + SWIFT_OBJC_INTERFACE_HEADER_NAME = "$(PRODUCT_NAME).h"; TULSI_BUILD_PATH = mediapipe/render/module/beauty/ios; TULSI_XCODE_VERSION = 13.4.1.13F100; }; - name = Debug; + name = __TulsiTestRunner_Debug; }; - 89A98AE696F55C6100000000 /* Release */ = { + C75F0BC2D33FB0ED00000000 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; @@ -10526,12 +4661,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; @@ -10545,7 +4675,7 @@ }; name = Release; }; - 89A98AE696F55C6100000001 /* Release */ = { + C75F0BC2D33FB0ED00000001 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = "Stub Launch Image"; @@ -10562,4519 +4692,1221 @@ }; name = Release; }; - 89A98AE696F55C6100000002 /* Release */ = { + C75F0BC2D33FB0ED00000002 /* 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_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_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_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 = ( - "-std=c++17", - "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0", - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DPTHREADPOOL_NO_DEPRECATED_API", - "-DTFLITE_BUILD_WITH_XNNPACK_DELEGATE", - "-DTFLITE_WITH_RUY", - "-DXNN_ENABLE_ASSEMBLY=1", - "-DXNN_ENABLE_JIT=0", - "-DXNN_ENABLE_MEMOPT=1", - "-DXNN_ENABLE_SPARSE=1", - "-DXNN_LOG_LEVEL=5", - "-DXNN_NO_QU8_OPERATORS", - "-DXNN_NO_U8_OPERATORS", - "-DXNN_WASMSIMD_VERSION=87", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_FaceMeshGPULibrary_2BF20B88_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 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_FaceMeshGPULibrary_61E6B091_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000003 /* Release */ = { + C75F0BC2D33FB0ED00000003 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-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", - "$(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 = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_olamodule_common_library_4A2D4D8A_ios_min11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_olamodule_common_library_9ADAC3A9_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000004 /* Release */ = { + C75F0BC2D33FB0ED00000004 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_util_28409609_ios_min11.0; + OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_util_66001351_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000005 /* Release */ = { + C75F0BC2D33FB0ED00000005 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_pixel_buffer_pool_util_1B0D8C74_ios_min11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000006 /* Release */ = { + C75F0BC2D33FB0ED00000006 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_cpu_util_B64315B8_ios_min11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000007 /* Release */ = { + C75F0BC2D33FB0ED00000007 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_26C42D3D_ios_min11.0; + OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_pixel_buffer_pool_util_C139F8B5_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000008 /* Release */ = { + C75F0BC2D33FB0ED00000008 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_gpu_buffer_storage_gpu_buffer_format_BA46520A_ios_min11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000009 /* Release */ = { + C75F0BC2D33FB0ED00000009 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_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 = ( - "-x", - "objective-c++", - "-fobjc-arc", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_gpu_buffer_multi_pool_gl_context_4D0E07B8_ios_min11.0; + OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_cpu_util_D57AACFF_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C610000000A /* Release */ = { + C75F0BC2D33FB0ED0000000A /* 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/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-x", - "objective-c++", - "-fobjc-arc", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = "_idx_core_core-ios_4EDC2AF0_ios_min11.0"; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = "_idx_core_core-ios_731E135C_ios_min11.0"; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C610000000B /* Release */ = { + C75F0BC2D33FB0ED0000000B /* 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/ "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_ref_gpuimagemath_gpuimageutil_8BF43A5D_ios_min11.0; + OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C610000000C /* Release */ = { + C75F0BC2D33FB0ED0000000C /* 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/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_math_3043B97F_ios_min11.0; + OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_math_661952D5_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C610000000D /* Release */ = { + C75F0BC2D33FB0ED0000000D /* 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_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_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_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 = ( - "-std=c++17", - "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0", - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DPTHREADPOOL_NO_DEPRECATED_API", - "-DTFLITE_BUILD_WITH_XNNPACK_DELEGATE", - "-DTFLITE_WITH_RUY", - "-DXNN_ENABLE_ASSEMBLY=1", - "-DXNN_ENABLE_JIT=0", - "-DXNN_ENABLE_MEMOPT=1", - "-DXNN_ENABLE_SPARSE=1", - "-DXNN_LOG_LEVEL=5", - "-DXNN_NO_QU8_OPERATORS", - "-DXNN_NO_U8_OPERATORS", - "-DXNN_WASMSIMD_VERSION=87", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_FaceMeshGPULibrary_2BF20B88_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 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_FaceMeshGPULibrary_61E6B091_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C610000000E /* Release */ = { + C75F0BC2D33FB0ED0000000E /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_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", - "$(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 = 15.5; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_olamodule_common_library_4A2D4D8A_ios_min15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_olamodule_common_library_9ADAC3A9_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C610000000F /* Release */ = { + C75F0BC2D33FB0ED0000000F /* 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_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_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 = ( - "-x", - "objective-c++", - "-fobjc-arc", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = "_idx_core_core-ios_4EDC2AF0_ios_min15.5"; + OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_cpu_util_D57AACFF_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000010 /* Release */ = { + C75F0BC2D33FB0ED00000010 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_ref_gpuimagemath_gpuimageutil_8BF43A5D_ios_min15.5; + OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_pixel_buffer_pool_util_C139F8B5_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000011 /* Release */ = { + C75F0BC2D33FB0ED00000011 /* 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_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_math_3043B97F_ios_min15.5; + OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_util_66001351_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000012 /* Release */ = { + C75F0BC2D33FB0ED00000012 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_pixel_buffer_pool_util_1B0D8C74_ios_min15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000013 /* Release */ = { + C75F0BC2D33FB0ED00000013 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_util_28409609_ios_min15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000014 /* Release */ = { + C75F0BC2D33FB0ED00000014 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_26C42D3D_ios_min15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000015 /* Release */ = { + C75F0BC2D33FB0ED00000015 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_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 = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_gpu_buffer_storage_gpu_buffer_format_BA46520A_ios_min15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = "_idx_core_core-ios_731E135C_ios_min15.5"; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000016 /* Release */ = { + C75F0BC2D33FB0ED00000016 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-x", - "objective-c++", - "-fobjc-arc", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_gpu_buffer_multi_pool_gl_context_4D0E07B8_ios_min15.5; + OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000017 /* Release */ = { + C75F0BC2D33FB0ED00000017 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_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/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_cpu_util_B64315B8_ios_min15.5; + OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_math_661952D5_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000018 /* Release */ = { + C75F0BC2D33FB0ED00000018 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-x", - "objective-c++", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_MPPGraphGPUData_733A9D5A_ios_min11.0; + OTHER_CFLAGS = "-x objective-c++ -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_MPPGraphGPUData_DE328030_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000019 /* Release */ = { + C75F0BC2D33FB0ED00000019 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-x", - "objective-c++", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_MPPGraphGPUData_733A9D5A_ios_min15.5; + OTHER_CFLAGS = "-x objective-c++ -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_MPPGraphGPUData_DE328030_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C610000001A /* Release */ = { + C75F0BC2D33FB0ED0000001A /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_MPPMetalHelper_7397E6A5_ios_min11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_MPPMetalHelper_8A6739B5_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C610000001B /* Release */ = { + C75F0BC2D33FB0ED0000001B /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-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_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_mediapipe_framework_ios_E5983FAB_ios_min11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_mediapipe_framework_ios_596FA5D1_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C610000001C /* Release */ = { + C75F0BC2D33FB0ED0000001C /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_MPPMetalHelper_7397E6A5_ios_min15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_MPPMetalHelper_8A6739B5_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C610000001D /* Release */ = { + C75F0BC2D33FB0ED0000001D /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-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_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_mediapipe_framework_ios_E5983FAB_ios_min15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_mediapipe_framework_ios_596FA5D1_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C610000001E /* Release */ = { + C75F0BC2D33FB0ED0000001E /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-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_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-x", - "objective-c++", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_MPPMetalUtil_E63D8158_ios_min11.0; + OTHER_CFLAGS = "-x objective-c++ -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_MPPMetalUtil_622319D3_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C610000001F /* Release */ = { + C75F0BC2D33FB0ED0000001F /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_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_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-x", - "objective-c++", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_MPPMetalUtil_E63D8158_ios_min15.5; + OTHER_CFLAGS = "-x objective-c++ -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_MPPMetalUtil_622319D3_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000020 /* Release */ = { + C75F0BC2D33FB0ED00000020 /* 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_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_WR)/mediapipe/render/core/math", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src", - "$(TULSI_OUTPUT_BASE)/external/FP16/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include", - "$(TULSI_OUTPUT_BASE)/external/FXdiv/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_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_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0", - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DPTHREADPOOL_NO_DEPRECATED_API", - "-DTFLITE_BUILD_WITH_XNNPACK_DELEGATE", - "-DTFLITE_WITH_RUY", - "-DXNN_ENABLE_ASSEMBLY=1", - "-DXNN_ENABLE_JIT=0", - "-DXNN_ENABLE_MEMOPT=1", - "-DXNN_ENABLE_SPARSE=1", - "-DXNN_LOG_LEVEL=5", - "-DXNN_NO_QU8_OPERATORS", - "-DXNN_NO_U8_OPERATORS", - "-DXNN_WASMSIMD_VERSION=87", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_OlaFaceUnityLibrary_5CE49B93_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 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_OlaFaceUnityLibrary_63B2D14F_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000021 /* Release */ = { + C75F0BC2D33FB0ED00000021 /* 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_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_WR)/mediapipe/render/core/math", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src", - "$(TULSI_OUTPUT_BASE)/external/FP16/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include", - "$(TULSI_OUTPUT_BASE)/external/FXdiv/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_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_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0", - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DPTHREADPOOL_NO_DEPRECATED_API", - "-DTFLITE_BUILD_WITH_XNNPACK_DELEGATE", - "-DTFLITE_WITH_RUY", - "-DXNN_ENABLE_ASSEMBLY=1", - "-DXNN_ENABLE_JIT=0", - "-DXNN_ENABLE_MEMOPT=1", - "-DXNN_ENABLE_SPARSE=1", - "-DXNN_LOG_LEVEL=5", - "-DXNN_NO_QU8_OPERATORS", - "-DXNN_NO_U8_OPERATORS", - "-DXNN_WASMSIMD_VERSION=87", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_OlaFaceUnityLibrary_5CE49B93_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 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_OlaFaceUnityLibrary_63B2D14F_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000022 /* Release */ = { + C75F0BC2D33FB0ED00000022 /* 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_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_annotation_overlay_calculator_7B50CB48_ios_min11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_annotation_overlay_calculator_7772C341_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000023 /* Release */ = { + C75F0BC2D33FB0ED00000023 /* 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_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_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_annotation_renderer_BE836363_ios_min11.0; + OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_annotation_renderer_1DCBFDF7_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000024 /* Release */ = { + C75F0BC2D33FB0ED00000024 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_shader_util_F77AE4F3_ios_min11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_gl_simple_shaders_2CB9CEAD_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000025 /* Release */ = { + C75F0BC2D33FB0ED00000025 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_gl_calculator_helper_D8986C65_ios_min11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_gl_calculator_helper_6AE62265_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000026 /* Release */ = { + C75F0BC2D33FB0ED00000026 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-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_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_image_properties_calculator_gpu_service_6BF370A2_ios_min11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_image_properties_calculator_gpu_service_941BB6CA_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000027 /* Release */ = { + C75F0BC2D33FB0ED00000027 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_gl_simple_shaders_6A91D77D_ios_min11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_shader_util_209E4ED9_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000028 /* Release */ = { + C75F0BC2D33FB0ED00000028 /* 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_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_annotation_overlay_calculator_7B50CB48_ios_min15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_annotation_overlay_calculator_7772C341_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000029 /* Release */ = { + C75F0BC2D33FB0ED00000029 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_shader_util_F77AE4F3_ios_min15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_gl_simple_shaders_2CB9CEAD_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C610000002A /* Release */ = { + C75F0BC2D33FB0ED0000002A /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_gl_simple_shaders_6A91D77D_ios_min15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_gl_calculator_helper_6AE62265_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C610000002B /* Release */ = { + C75F0BC2D33FB0ED0000002B /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/external/ios_opencv", - ); GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/ios_opencv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_annotation_renderer_BE836363_ios_min15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_image_properties_calculator_gpu_service_941BB6CA_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C610000002C /* Release */ = { + C75F0BC2D33FB0ED0000002C /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_gl_calculator_helper_D8986C65_ios_min15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_shader_util_209E4ED9_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C610000002D /* Release */ = { + C75F0BC2D33FB0ED0000002D /* 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_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_image_properties_calculator_gpu_service_6BF370A2_ios_min15.5; + OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_annotation_renderer_1DCBFDF7_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C610000002E /* Release */ = { + C75F0BC2D33FB0ED0000002E /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_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_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_begin_loop_calculator_FEDA75EA_ios_min11.0; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_begin_loop_calculator_55C0335F_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C610000002F /* Release */ = { + C75F0BC2D33FB0ED0000002F /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_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_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_begin_loop_calculator_FEDA75EA_ios_min15.5; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_begin_loop_calculator_55C0335F_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000030 /* Release */ = { + C75F0BC2D33FB0ED00000030 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_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/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_clip_vector_size_calculator_02FA2733_ios_min11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_clip_vector_size_calculator_B472A55B_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000031 /* Release */ = { + C75F0BC2D33FB0ED00000031 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_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/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_clip_vector_size_calculator_02FA2733_ios_min15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_clip_vector_size_calculator_B472A55B_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000032 /* Release */ = { + C75F0BC2D33FB0ED00000032 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_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_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0", - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DPTHREADPOOL_NO_DEPRECATED_API", - "-DTFLITE_BUILD_WITH_XNNPACK_DELEGATE", - "-DTFLITE_WITH_RUY", - "-DXNN_ENABLE_ASSEMBLY=1", - "-DXNN_ENABLE_JIT=0", - "-DXNN_ENABLE_MEMOPT=1", - "-DXNN_ENABLE_SPARSE=1", - "-DXNN_LOG_LEVEL=5", - "-DXNN_NO_QU8_OPERATORS", - "-DXNN_NO_U8_OPERATORS", - "-DXNN_WASMSIMD_VERSION=87", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_cpu_op_resolver_741B9450_ios_min11.0; + OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_cpu_op_resolver_E63A3714_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000033 /* Release */ = { + C75F0BC2D33FB0ED00000033 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/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", - "-DTFLITE_WITH_RUY", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_max_unpooling_max_pool_argmax_92E156D6_ios_min11.0; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000034 /* Release */ = { + C75F0BC2D33FB0ED00000034 /* 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/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DTFLITE_WITH_RUY", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_AB0D0716_ios_min11.0; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_transpose_conv_bias_94247583_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000035 /* Release */ = { + C75F0BC2D33FB0ED00000035 /* 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/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DTFLITE_WITH_RUY", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_transpose_conv_bias_207EFBC1_ios_min11.0; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_max_unpooling_max_pool_argmax_09627F19_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000036 /* Release */ = { + C75F0BC2D33FB0ED00000036 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_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_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0", - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DPTHREADPOOL_NO_DEPRECATED_API", - "-DTFLITE_BUILD_WITH_XNNPACK_DELEGATE", - "-DTFLITE_WITH_RUY", - "-DXNN_ENABLE_ASSEMBLY=1", - "-DXNN_ENABLE_JIT=0", - "-DXNN_ENABLE_MEMOPT=1", - "-DXNN_ENABLE_SPARSE=1", - "-DXNN_LOG_LEVEL=5", - "-DXNN_NO_QU8_OPERATORS", - "-DXNN_NO_U8_OPERATORS", - "-DXNN_WASMSIMD_VERSION=87", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_cpu_op_resolver_741B9450_ios_min15.5; + OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_cpu_op_resolver_E63A3714_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000037 /* Release */ = { + C75F0BC2D33FB0ED00000037 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/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/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DTFLITE_WITH_RUY", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_max_unpooling_max_pool_argmax_92E156D6_ios_min15.5; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_max_unpooling_max_pool_argmax_09627F19_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000038 /* Release */ = { + C75F0BC2D33FB0ED00000038 /* 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/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DTFLITE_WITH_RUY", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_transpose_conv_bias_207EFBC1_ios_min15.5; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000039 /* Release */ = { + C75F0BC2D33FB0ED00000039 /* 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/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DTFLITE_WITH_RUY", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_AB0D0716_ios_min15.5; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_transpose_conv_bias_94247583_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C610000003A /* Release */ = { + C75F0BC2D33FB0ED0000003A /* 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_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_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/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_detection_projection_calculator_9B95E740_ios_min11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_detection_projection_calculator_07107D71_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C610000003B /* Release */ = { + C75F0BC2D33FB0ED0000003B /* 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_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_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/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_detection_projection_calculator_9B95E740_ios_min15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_detection_projection_calculator_07107D71_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C610000003C /* Release */ = { + C75F0BC2D33FB0ED0000003C /* 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/FP16/_virtual_includes/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16", - "$(TULSI_OUTPUT_BASE)/external/ios_opencv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - "$(TULSI_OUTPUT_BASE)/external/FP16/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-x", - "objective-c++", - "-fobjc-arc", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_image_to_tensor_calculator_C3DB5E1E_ios_min11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_image_to_tensor_calculator_77E4634D_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C610000003D /* Release */ = { + C75F0BC2D33FB0ED0000003D /* 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_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_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/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-x", - "objective-c++", - "-fobjc-arc", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_image_to_tensor_converter_opencv_F40C896E_ios_min11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_image_to_tensor_converter_opencv_1FC75D94_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C610000003E /* Release */ = { + C75F0BC2D33FB0ED0000003E /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_7F9F05C6_ios_min11.0; + OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C610000003F /* Release */ = { + C75F0BC2D33FB0ED0000003F /* 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/FP16/_virtual_includes/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16", - "$(TULSI_OUTPUT_BASE)/external/ios_opencv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - "$(TULSI_OUTPUT_BASE)/external/FP16/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-x", - "objective-c++", - "-fobjc-arc", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_image_to_tensor_calculator_C3DB5E1E_ios_min15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_image_to_tensor_calculator_77E4634D_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000040 /* Release */ = { + C75F0BC2D33FB0ED00000040 /* 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_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_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/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_7F9F05C6_ios_min15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_image_to_tensor_converter_opencv_1FC75D94_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000041 /* Release */ = { + C75F0BC2D33FB0ED00000041 /* 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_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-x", - "objective-c++", - "-fobjc-arc", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_image_to_tensor_converter_opencv_F40C896E_ios_min15.5; + OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000042 /* Release */ = { + C75F0BC2D33FB0ED00000042 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - "$(TULSI_OUTPUT_BASE)/external/FP16/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-x", - "objective-c++", - "-fobjc-arc", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_image_to_tensor_converter_metal_9AA64D0A_ios_min11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_image_to_tensor_converter_metal_A1DB3550_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000043 /* Release */ = { + C75F0BC2D33FB0ED00000043 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - "$(TULSI_OUTPUT_BASE)/external/FP16/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-x", - "objective-c++", - "-fobjc-arc", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_image_to_tensor_converter_metal_9AA64D0A_ios_min15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_image_to_tensor_converter_metal_A1DB3550_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000044 /* Release */ = { + C75F0BC2D33FB0ED00000044 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo", - "$(TULSI_OUTPUT_BASE)/external/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog", - "$(TULSI_OUTPUT_BASE)/external/gemmlowp", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp", - "$(TULSI_OUTPUT_BASE)/external/eigen_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive", - "$(TULSI_OUTPUT_BASE)/external/fft2d", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive", - "$(TULSI_OUTPUT_BASE)/external/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool", - "$(TULSI_OUTPUT_BASE)/external/FXdiv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src", - "$(TULSI_OUTPUT_BASE)/external/FP16/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include", - "$(TULSI_OUTPUT_BASE)/external/FXdiv/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-x", - "objective-c++", - "-fobjc-arc", - "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0", - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DPTHREADPOOL_NO_DEPRECATED_API", - "-DTFLITE_BUILD_WITH_XNNPACK_DELEGATE", - "-DTFLITE_WITH_RUY", - "-DXNN_ENABLE_ASSEMBLY=1", - "-DXNN_ENABLE_JIT=0", - "-DXNN_ENABLE_MEMOPT=1", - "-DXNN_ENABLE_SPARSE=1", - "-DXNN_LOG_LEVEL=5", - "-DXNN_NO_QU8_OPERATORS", - "-DXNN_NO_U8_OPERATORS", - "-DXNN_WASMSIMD_VERSION=87", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_inference_calculator_interface_inference_calculator_cpu_AEFE6570_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 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000045 /* Release */ = { + C75F0BC2D33FB0ED00000045 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_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_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_tflite_model_loader_F900857E_ios_min11.0; + OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tflite_model_loader_6F62D289_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000046 /* Release */ = { + C75F0BC2D33FB0ED00000046 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_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_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-ObjC++", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_resource_util_B6FA1F0B_ios_min11.0; + OTHER_CFLAGS = "-ObjC++ -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_resource_util_0C14DDDC_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000047 /* Release */ = { + C75F0BC2D33FB0ED00000047 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo", - "$(TULSI_OUTPUT_BASE)/external/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog", - "$(TULSI_OUTPUT_BASE)/external/gemmlowp", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp", - "$(TULSI_OUTPUT_BASE)/external/eigen_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive", - "$(TULSI_OUTPUT_BASE)/external/fft2d", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive", - "$(TULSI_OUTPUT_BASE)/external/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool", - "$(TULSI_OUTPUT_BASE)/external/FXdiv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src", - "$(TULSI_OUTPUT_BASE)/external/FP16/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include", - "$(TULSI_OUTPUT_BASE)/external/FXdiv/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-x", - "objective-c++", - "-fobjc-arc", - "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0", - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DPTHREADPOOL_NO_DEPRECATED_API", - "-DTFLITE_BUILD_WITH_XNNPACK_DELEGATE", - "-DTFLITE_WITH_RUY", - "-DXNN_ENABLE_ASSEMBLY=1", - "-DXNN_ENABLE_JIT=0", - "-DXNN_ENABLE_MEMOPT=1", - "-DXNN_ENABLE_SPARSE=1", - "-DXNN_LOG_LEVEL=5", - "-DXNN_NO_QU8_OPERATORS", - "-DXNN_NO_U8_OPERATORS", - "-DXNN_WASMSIMD_VERSION=87", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_inference_calculator_interface_inference_calculator_cpu_AEFE6570_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 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000048 /* Release */ = { + C75F0BC2D33FB0ED00000048 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_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_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_tflite_model_loader_F900857E_ios_min15.5; + OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tflite_model_loader_6F62D289_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000049 /* Release */ = { + C75F0BC2D33FB0ED00000049 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_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_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-ObjC++", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_resource_util_B6FA1F0B_ios_min15.5; + OTHER_CFLAGS = "-ObjC++ -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_resource_util_0C14DDDC_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C610000004A /* Release */ = { + C75F0BC2D33FB0ED0000004A /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo", - "$(TULSI_OUTPUT_BASE)/external/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog", - "$(TULSI_OUTPUT_BASE)/external/gemmlowp", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp", - "$(TULSI_OUTPUT_BASE)/external/eigen_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive", - "$(TULSI_OUTPUT_BASE)/external/fft2d", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive", - "$(TULSI_OUTPUT_BASE)/external/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool", - "$(TULSI_OUTPUT_BASE)/external/FXdiv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src", - "$(TULSI_OUTPUT_BASE)/external/FP16/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include", - "$(TULSI_OUTPUT_BASE)/external/FXdiv/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-x", - "objective-c++", - "-fobjc-arc", - "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0", - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DPTHREADPOOL_NO_DEPRECATED_API", - "-DTFLITE_BUILD_WITH_XNNPACK_DELEGATE", - "-DTFLITE_WITH_RUY", - "-DXNN_ENABLE_ASSEMBLY=1", - "-DXNN_ENABLE_JIT=0", - "-DXNN_ENABLE_MEMOPT=1", - "-DXNN_ENABLE_SPARSE=1", - "-DXNN_LOG_LEVEL=5", - "-DXNN_NO_QU8_OPERATORS", - "-DXNN_NO_U8_OPERATORS", - "-DXNN_WASMSIMD_VERSION=87", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_inference_calculator_metal_712F45E9_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 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_inference_calculator_metal_65084AC7_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C610000004B /* Release */ = { + C75F0BC2D33FB0ED0000004B /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo", - "$(TULSI_OUTPUT_BASE)/external/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog", - "$(TULSI_OUTPUT_BASE)/external/gemmlowp", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp", - "$(TULSI_OUTPUT_BASE)/external/eigen_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive", - "$(TULSI_OUTPUT_BASE)/external/fft2d", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive", - "$(TULSI_OUTPUT_BASE)/external/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool", - "$(TULSI_OUTPUT_BASE)/external/FXdiv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src", - "$(TULSI_OUTPUT_BASE)/external/FP16/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include", - "$(TULSI_OUTPUT_BASE)/external/FXdiv/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-x", - "objective-c++", - "-fobjc-arc", - "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0", - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DPTHREADPOOL_NO_DEPRECATED_API", - "-DTFLITE_BUILD_WITH_XNNPACK_DELEGATE", - "-DTFLITE_WITH_RUY", - "-DXNN_ENABLE_ASSEMBLY=1", - "-DXNN_ENABLE_JIT=0", - "-DXNN_ENABLE_MEMOPT=1", - "-DXNN_ENABLE_SPARSE=1", - "-DXNN_LOG_LEVEL=5", - "-DXNN_NO_QU8_OPERATORS", - "-DXNN_NO_U8_OPERATORS", - "-DXNN_WASMSIMD_VERSION=87", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_inference_calculator_metal_712F45E9_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 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_inference_calculator_metal_65084AC7_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C610000004C /* Release */ = { + C75F0BC2D33FB0ED0000004C /* 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_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_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/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_non_max_suppression_calculator_EA803631_ios_min11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_non_max_suppression_calculator_E0C32C58_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C610000004D /* Release */ = { + C75F0BC2D33FB0ED0000004D /* 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_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_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/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_non_max_suppression_calculator_EA803631_ios_min15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_non_max_suppression_calculator_E0C32C58_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C610000004E /* Release */ = { + C75F0BC2D33FB0ED0000004E /* 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/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0", - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DPTHREADPOOL_NO_DEPRECATED_API", - "-DTFLITE_BUILD_WITH_XNNPACK_DELEGATE", - "-DTFLITE_WITH_RUY", - "-DXNN_ENABLE_ASSEMBLY=1", - "-DXNN_ENABLE_JIT=0", - "-DXNN_ENABLE_MEMOPT=1", - "-DXNN_ENABLE_SPARSE=1", - "-DXNN_LOG_LEVEL=5", - "-DXNN_NO_QU8_OPERATORS", - "-DXNN_NO_U8_OPERATORS", - "-DXNN_WASMSIMD_VERSION=87", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_op_resolver_E390FDC7_ios_min11.0; + OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_op_resolver_29CCF89E_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C610000004F /* Release */ = { + C75F0BC2D33FB0ED0000004F /* 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/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0", - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DPTHREADPOOL_NO_DEPRECATED_API", - "-DTFLITE_BUILD_WITH_XNNPACK_DELEGATE", - "-DTFLITE_WITH_RUY", - "-DXNN_ENABLE_ASSEMBLY=1", - "-DXNN_ENABLE_JIT=0", - "-DXNN_ENABLE_MEMOPT=1", - "-DXNN_ENABLE_SPARSE=1", - "-DXNN_LOG_LEVEL=5", - "-DXNN_NO_QU8_OPERATORS", - "-DXNN_NO_U8_OPERATORS", - "-DXNN_WASMSIMD_VERSION=87", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_op_resolver_E390FDC7_ios_min15.5; + OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_op_resolver_29CCF89E_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000050 /* Release */ = { + C75F0BC2D33FB0ED00000050 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_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_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_previous_loopback_calculator_header_util_D9AEB78A_ios_min11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000051 /* Release */ = { + C75F0BC2D33FB0ED00000051 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_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_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_previous_loopback_calculator_header_util_D9AEB78A_ios_min15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000052 /* Release */ = { + C75F0BC2D33FB0ED00000052 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_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_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-x", - "objective-c++", - "-fobjc-arc", - "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0", - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DPTHREADPOOL_NO_DEPRECATED_API", - "-DTFLITE_BUILD_WITH_XNNPACK_DELEGATE", - "-DTFLITE_WITH_RUY", - "-DXNN_ENABLE_ASSEMBLY=1", - "-DXNN_ENABLE_JIT=0", - "-DXNN_ENABLE_MEMOPT=1", - "-DXNN_ENABLE_SPARSE=1", - "-DXNN_LOG_LEVEL=5", - "-DXNN_NO_QU8_OPERATORS", - "-DXNN_NO_U8_OPERATORS", - "-DXNN_WASMSIMD_VERSION=87", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_split_vector_calculator_6654799A_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 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_split_vector_calculator_73890910_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000053 /* Release */ = { + C75F0BC2D33FB0ED00000053 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_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_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-x", - "objective-c++", - "-fobjc-arc", - "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0", - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DPTHREADPOOL_NO_DEPRECATED_API", - "-DTFLITE_BUILD_WITH_XNNPACK_DELEGATE", - "-DTFLITE_WITH_RUY", - "-DXNN_ENABLE_ASSEMBLY=1", - "-DXNN_ENABLE_JIT=0", - "-DXNN_ENABLE_MEMOPT=1", - "-DXNN_ENABLE_SPARSE=1", - "-DXNN_LOG_LEVEL=5", - "-DXNN_NO_QU8_OPERATORS", - "-DXNN_NO_U8_OPERATORS", - "-DXNN_WASMSIMD_VERSION=87", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_split_vector_calculator_6654799A_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 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_split_vector_calculator_73890910_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000054 /* Release */ = { + C75F0BC2D33FB0ED00000054 /* 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_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-x", - "objective-c++", - "-fobjc-arc", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_tensors_to_detections_calculator_888E512F_ios_min11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tensors_to_detections_calculator_B4C99DEA_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000055 /* Release */ = { + C75F0BC2D33FB0ED00000055 /* 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_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-x", - "objective-c++", - "-fobjc-arc", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_tensors_to_detections_calculator_888E512F_ios_min15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tensors_to_detections_calculator_B4C99DEA_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000056 /* Release */ = { + C75F0BC2D33FB0ED00000056 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_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_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-x", - "objective-c++", - "-fobjc-arc", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_7ED8D1B5_ios_min11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000057 /* Release */ = { + C75F0BC2D33FB0ED00000057 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_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_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-x", - "objective-c++", - "-fobjc-arc", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_7ED8D1B5_ios_min15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000058 /* Release */ = { + C75F0BC2D33FB0ED00000058 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16", - "$(TULSI_OUTPUT_BASE)/external/gemmlowp", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/eigen_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo", - "$(TULSI_OUTPUT_BASE)/external/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog", - "$(TULSI_OUTPUT_BASE)/external/fft2d", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool", - "$(TULSI_OUTPUT_BASE)/external/FXdiv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - "$(TULSI_OUTPUT_BASE)/external/FP16/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include", - "$(TULSI_OUTPUT_BASE)/external/FXdiv/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0", - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DPTHREADPOOL_NO_DEPRECATED_API", - "-DTFLITE_BUILD_WITH_XNNPACK_DELEGATE", - "-DTFLITE_WITH_RUY", - "-DXNN_ENABLE_ASSEMBLY=1", - "-DXNN_ENABLE_JIT=0", - "-DXNN_ENABLE_MEMOPT=1", - "-DXNN_ENABLE_SPARSE=1", - "-DXNN_LOG_LEVEL=5", - "-DXNN_NO_QU8_OPERATORS", - "-DXNN_NO_U8_OPERATORS", - "-DXNN_WASMSIMD_VERSION=87", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_tflite_custom_op_resolver_calculator_042597A8_ios_min11.0; + OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C6100000059 /* Release */ = { + C75F0BC2D33FB0ED00000059 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16", - "$(TULSI_OUTPUT_BASE)/external/gemmlowp", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/eigen_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo", - "$(TULSI_OUTPUT_BASE)/external/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog", - "$(TULSI_OUTPUT_BASE)/external/fft2d", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool", - "$(TULSI_OUTPUT_BASE)/external/FXdiv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - "$(TULSI_OUTPUT_BASE)/external/FP16/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include", - "$(TULSI_OUTPUT_BASE)/external/FXdiv/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0", - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DPTHREADPOOL_NO_DEPRECATED_API", - "-DTFLITE_BUILD_WITH_XNNPACK_DELEGATE", - "-DTFLITE_WITH_RUY", - "-DXNN_ENABLE_ASSEMBLY=1", - "-DXNN_ENABLE_JIT=0", - "-DXNN_ENABLE_MEMOPT=1", - "-DXNN_ENABLE_SPARSE=1", - "-DXNN_LOG_LEVEL=5", - "-DXNN_NO_QU8_OPERATORS", - "-DXNN_NO_U8_OPERATORS", - "-DXNN_WASMSIMD_VERSION=87", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_tflite_custom_op_resolver_calculator_042597A8_ios_min15.5; + OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C610000005A /* Release */ = { + C75F0BC2D33FB0ED0000005A /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_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_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_tflite_model_calculator_end_loop_calculator_6A228ACC_ios_min11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C610000005B /* Release */ = { + C75F0BC2D33FB0ED0000005B /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_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_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_tflite_model_calculator_end_loop_calculator_6A228ACC_ios_min15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C610000005C /* Release */ = { + C75F0BC2D33FB0ED0000005C /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-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_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_A15F304E_ios_min11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C610000005D /* Release */ = { + C75F0BC2D33FB0ED0000005D /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-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_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_A15F304E_ios_min15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - 89A98AE696F55C610000005E /* Release */ = { + C75F0BC2D33FB0ED0000005E /* Release */ = { isa = XCBuildConfiguration; buildSettings = { ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = "Stub Launch Image"; @@ -15082,7 +5914,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-OlaFaceUnityLibrary"; SDKROOT = iphoneos; TULSI_BUILD_PATH = mediapipe/render/module/beauty/ios; @@ -15090,7 +5922,7 @@ }; name = Release; }; - 89A98AE6ACBECA4500000000 /* __TulsiTestRunner_Debug */ = { + C75F0BC2D434672300000000 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; @@ -15107,7 +5939,7 @@ CODE_SIGN_IDENTITY = ""; DONT_RUN_SWIFT_STDLIB_TOOL = YES; ENABLE_TESTABILITY = YES; - FRAMEWORK_SEARCH_PATHS = ""; + FRAMEWORK_SEARCH_PATHS = "$(PLATFORM_DIR)/Developer/Library/Frameworks"; GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; GCC_WARN_64_TO_32_BIT_CONVERSION = YES; GCC_WARN_ABOUT_RETURN_TYPE = YES; @@ -15115,15 +5947,10 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - HEADER_SEARCH_PATHS = ""; + 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; - 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"; @@ -15132,58 +5959,1256 @@ TULSI_VERSION = 0.20220209.88; TULSI_WR = "${SRCROOT}/../../../../.."; }; - name = __TulsiTestRunner_Debug; + name = Debug; }; - 89A98AE6ACBECA4500000001 /* __TulsiTestRunner_Debug */ = { + C75F0BC2D434672300000001 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = "Stub Launch Image"; BAZEL_TARGET = "//mediapipe/render/module/beauty/ios: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; TULSI_XCODE_VERSION = 13.4.1.13F100; }; - name = __TulsiTestRunner_Debug; + name = Debug; }; - 89A98AE6ACBECA4500000002 /* __TulsiTestRunner_Debug */ = { + C75F0BC2D434672300000002 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_FaceMeshGPULibrary_61E6B091_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000003 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_olamodule_common_library_9ADAC3A9_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000004 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_util_66001351_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000005 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000006 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000007 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_pixel_buffer_pool_util_C139F8B5_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000008 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000009 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_cpu_util_D57AACFF_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D43467230000000A /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = "_idx_core_core-ios_731E135C_ios_min11.0"; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D43467230000000B /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D43467230000000C /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_math_661952D5_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D43467230000000D /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_FaceMeshGPULibrary_61E6B091_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D43467230000000E /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_olamodule_common_library_9ADAC3A9_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D43467230000000F /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_cpu_util_D57AACFF_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000010 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_pixel_buffer_pool_util_C139F8B5_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000011 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_util_66001351_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000012 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000013 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000014 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000015 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = "_idx_core_core-ios_731E135C_ios_min15.5"; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000016 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000017 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_math_661952D5_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000018 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-x objective-c++ -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_MPPGraphGPUData_DE328030_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000019 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-x objective-c++ -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_MPPGraphGPUData_DE328030_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D43467230000001A /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_MPPMetalHelper_8A6739B5_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D43467230000001B /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_mediapipe_framework_ios_596FA5D1_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D43467230000001C /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_MPPMetalHelper_8A6739B5_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D43467230000001D /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_mediapipe_framework_ios_596FA5D1_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D43467230000001E /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-x objective-c++ -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_MPPMetalUtil_622319D3_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D43467230000001F /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-x objective-c++ -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_MPPMetalUtil_622319D3_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000020 /* 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_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_OlaFaceUnityLibrary_63B2D14F_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000021 /* 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_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_OlaFaceUnityLibrary_63B2D14F_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000022 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_annotation_overlay_calculator_7772C341_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000023 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_annotation_renderer_1DCBFDF7_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000024 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_gl_simple_shaders_2CB9CEAD_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000025 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_gl_calculator_helper_6AE62265_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000026 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_image_properties_calculator_gpu_service_941BB6CA_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000027 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_shader_util_209E4ED9_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000028 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_annotation_overlay_calculator_7772C341_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000029 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_gl_simple_shaders_2CB9CEAD_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D43467230000002A /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_gl_calculator_helper_6AE62265_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D43467230000002B /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_image_properties_calculator_gpu_service_941BB6CA_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D43467230000002C /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_shader_util_209E4ED9_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D43467230000002D /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_annotation_renderer_1DCBFDF7_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D43467230000002E /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_begin_loop_calculator_55C0335F_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D43467230000002F /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_begin_loop_calculator_55C0335F_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000030 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_clip_vector_size_calculator_B472A55B_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000031 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_clip_vector_size_calculator_B472A55B_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000032 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_cpu_op_resolver_E63A3714_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000033 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000034 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_transpose_conv_bias_94247583_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000035 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_max_unpooling_max_pool_argmax_09627F19_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000036 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_cpu_op_resolver_E63A3714_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000037 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_max_unpooling_max_pool_argmax_09627F19_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000038 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000039 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_transpose_conv_bias_94247583_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D43467230000003A /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_detection_projection_calculator_07107D71_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D43467230000003B /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_detection_projection_calculator_07107D71_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D43467230000003C /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_image_to_tensor_calculator_77E4634D_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D43467230000003D /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_image_to_tensor_converter_opencv_1FC75D94_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D43467230000003E /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D43467230000003F /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_image_to_tensor_calculator_77E4634D_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000040 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_image_to_tensor_converter_opencv_1FC75D94_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000041 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000042 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_image_to_tensor_converter_metal_A1DB3550_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000043 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_image_to_tensor_converter_metal_A1DB3550_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000044 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000045 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tflite_model_loader_6F62D289_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000046 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-ObjC++ -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_resource_util_0C14DDDC_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000047 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000048 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tflite_model_loader_6F62D289_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000049 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-ObjC++ -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_resource_util_0C14DDDC_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D43467230000004A /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_inference_calculator_metal_65084AC7_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D43467230000004B /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_inference_calculator_metal_65084AC7_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D43467230000004C /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_non_max_suppression_calculator_E0C32C58_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D43467230000004D /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_non_max_suppression_calculator_E0C32C58_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D43467230000004E /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_op_resolver_29CCF89E_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D43467230000004F /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_op_resolver_29CCF89E_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000050 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000051 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000052 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_split_vector_calculator_73890910_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000053 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_split_vector_calculator_73890910_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000054 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tensors_to_detections_calculator_B4C99DEA_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000055 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tensors_to_detections_calculator_B4C99DEA_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000056 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000057 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000058 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000059 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D43467230000005A /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D43467230000005B /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D43467230000005C /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D43467230000005D /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D43467230000005E /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = "Stub Launch Image"; BAZEL_TARGET = "//mediapipe/render/module/beauty/ios: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"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; PRODUCT_NAME = "mediapipe-render-module-beauty-ios-OlaFaceUnityLibrary"; SDKROOT = iphoneos; - SWIFT_INSTALL_OBJC_HEADER = NO; - SWIFT_OBJC_INTERFACE_HEADER_NAME = "$(PRODUCT_NAME).h"; TULSI_BUILD_PATH = mediapipe/render/module/beauty/ios; TULSI_XCODE_VERSION = 13.4.1.13F100; }; - name = __TulsiTestRunner_Debug; + name = Debug; }; - 89A98AE6D9581F9600000000 /* __TulsiTestRunner_Release */ = { + C75F0BC2FEC462CF00000000 /* __TulsiTestRunner_Release */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; @@ -15227,7 +7252,7 @@ }; name = __TulsiTestRunner_Release; }; - 89A98AE6D9581F9600000001 /* __TulsiTestRunner_Release */ = { + C75F0BC2FEC462CF00000001 /* __TulsiTestRunner_Release */ = { isa = XCBuildConfiguration; buildSettings = { ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = "Stub Launch Image"; @@ -15252,7 +7277,7 @@ }; name = __TulsiTestRunner_Release; }; - 89A98AE6D9581F9600000002 /* __TulsiTestRunner_Release */ = { + C75F0BC2FEC462CF00000002 /* __TulsiTestRunner_Release */ = { isa = XCBuildConfiguration; buildSettings = { ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = "Stub Launch Image"; @@ -15262,7 +7287,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"; @@ -15279,1063 +7304,779 @@ /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ - FA986D99000E817F00000000 /* Build configuration list for PBXNativeTarget "_idx_image_properties_calculator_gpu_service_6BF370A2_ios_min15.5" */ = { + D31CF1F503CB892C00000000 /* Build configuration list for PBXNativeTarget "_idx_split_vector_calculator_73890910_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE6555922970000002D /* Debug */, - 89A98AE696F55C610000002D /* Release */, - 36A6E625288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E626288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000053 /* Debug */, + C75F0BC2D33FB0ED00000053 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D99040548D400000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_gpu_buffer_format_BA46520A_ios_min11.0" */ = { + D31CF1F50421972E00000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_op_resolver_E63A3714_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000008 /* Debug */, - 89A98AE696F55C6100000008 /* Release */, - 36A6E61F288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E620288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000032 /* Debug */, + C75F0BC2D33FB0ED00000032 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D990778FA5200000000 /* Build configuration list for PBXNativeTarget "_idx_resource_util_B6FA1F0B_ios_min11.0" */ = { + D31CF1F507002AA600000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000046 /* Debug */, - 89A98AE696F55C6100000046 /* Release */, - 36A6E663288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E664288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000047 /* Debug */, + C75F0BC2D33FB0ED00000047 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D990BA7F1C900000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_multi_pool_gl_context_4D0E07B8_ios_min11.0" */ = { + D31CF1F5073F4E6E00000000 /* Build configuration list for PBXNativeTarget "_idx_util_66001351_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000009 /* Debug */, - 89A98AE696F55C6100000009 /* Release */, - 36A6E617288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E618288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000004 /* Debug */, + C75F0BC2D33FB0ED00000004 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D990EB0070600000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalUtil_E63D8158_ios_min11.0" */ = { + D31CF1F50931EF1C00000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE6555922970000001E /* Debug */, - 89A98AE696F55C610000001E /* Release */, - 36A6E5E7288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E5E8288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000044 /* Debug */, + C75F0BC2D33FB0ED00000044 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D9910A050C000000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_overlay_calculator_7B50CB48_ios_min11.0" */ = { + D31CF1F50DE3243100000000 /* Build configuration list for PBXNativeTarget "_idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000022 /* Debug */, - 89A98AE696F55C6100000022 /* Release */, - 36A6E5EF288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E5F0288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000050 /* Debug */, + C75F0BC2D33FB0ED00000050 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D99174D441D00000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_op_resolver_741B9450_ios_min11.0" */ = { + D31CF1F50FD9148A00000000 /* Build configuration list for PBXNativeTarget "_idx_transpose_conv_bias_94247583_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000032 /* Debug */, - 89A98AE696F55C6100000032 /* Release */, - 36A6E603288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E604288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000034 /* Debug */, + C75F0BC2D33FB0ED00000034 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D991C65D8AE00000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_26C42D3D_ios_min15.5" */ = { + D31CF1F5108ED90400000000 /* Build configuration list for PBXNativeTarget "_idx_math_661952D5_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000014 /* Debug */, - 89A98AE696F55C6100000014 /* Release */, - 36A6E61D288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E61E288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000017 /* Debug */, + C75F0BC2D33FB0ED00000017 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D991DE7AFEB00000000 /* Build configuration list for PBXNativeTarget "_idx_clip_vector_size_calculator_02FA2733_ios_min15.5" */ = { + D31CF1F51CCE08FA00000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000031 /* Debug */, - 89A98AE696F55C6100000031 /* Release */, - 36A6E5FD288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E5FE288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000014 /* Debug */, + C75F0BC2D33FB0ED00000014 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D991E69B20A00000000 /* Build configuration list for PBXNativeTarget "_idx_gl_simple_shaders_6A91D77D_ios_min15.5" */ = { + D31CF1F51D5FFF0A00000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_detections_calculator_B4C99DEA_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE6555922970000002A /* Debug */, - 89A98AE696F55C610000002A /* Release */, - 36A6E615288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E616288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000055 /* Debug */, + C75F0BC2D33FB0ED00000055 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D991F01EA1200000000 /* Build configuration list for PBXNativeTarget "_idx_gl_calculator_helper_D8986C65_ios_min11.0" */ = { + D31CF1F523E0E87900000000 /* Build configuration list for PBXNativeTarget "_idx_core_core-ios_731E135C_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000025 /* Debug */, - 89A98AE696F55C6100000025 /* Release */, - 36A6E60F288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E610288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000015 /* Debug */, + C75F0BC2D33FB0ED00000015 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D992024523300000000 /* Build configuration list for PBXNativeTarget "_idx_OlaFaceUnityLibrary_5CE49B93_ios_min15.5" */ = { + D31CF1F5240434D500000000 /* Build configuration list for PBXNativeTarget "_idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000021 /* Debug */, - 89A98AE696F55C6100000021 /* Release */, - 36A6E5ED288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E5EE288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D43467230000000B /* Debug */, + C75F0BC2D33FB0ED0000000B /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D9925C9ED4000000000 /* Build configuration list for PBXNativeTarget "_idx_OlaFaceUnityLibrary_5CE49B93_ios_min11.0" */ = { + D31CF1F5260C68A100000000 /* Build configuration list for PBXNativeTarget "_idx_op_resolver_29CCF89E_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000020 /* Debug */, - 89A98AE696F55C6100000020 /* Release */, - 36A6E5EB288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E5EC288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D43467230000004E /* Debug */, + C75F0BC2D33FB0ED0000004E /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D9927F8B20300000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_detections_calculator_888E512F_ios_min11.0" */ = { + D31CF1F5294E870200000000 /* Build configuration list for PBXNativeTarget "_idx_gl_calculator_helper_6AE62265_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000054 /* Debug */, - 89A98AE696F55C6100000054 /* Release */, - 36A6E66F288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E670288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000025 /* Debug */, + C75F0BC2D33FB0ED00000025 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D992819742700000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_util_B64315B8_ios_min11.0" */ = { + D31CF1F52A49F50200000000 /* Build configuration list for PBXNativeTarget "_idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000006 /* Debug */, - 89A98AE696F55C6100000006 /* Release */, - 36A6E607288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E608288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000051 /* Debug */, + C75F0BC2D33FB0ED00000051 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D9928F2BAC000000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_metal_712F45E9_ios_min15.5" */ = { + D31CF1F52B54149500000000 /* Build configuration list for PBXNativeTarget "_idx_OlaFaceUnityLibrary_63B2D14F_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE6555922970000004B /* Debug */, - 89A98AE696F55C610000004B /* Release */, - 36A6E639288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E63A288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000021 /* Debug */, + C75F0BC2D33FB0ED00000021 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D99291CEF2C00000000 /* Build configuration list for PBXNativeTarget "_idx_pixel_buffer_pool_util_1B0D8C74_ios_min11.0" */ = { + D31CF1F52BE3F25400000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_op_resolver_E63A3714_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000005 /* Debug */, - 89A98AE696F55C6100000005 /* Release */, - 36A6E653288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E654288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000036 /* Debug */, + C75F0BC2D33FB0ED00000036 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D9929F8455500000000 /* Build configuration list for PBXNativeTarget "_idx_gl_simple_shaders_6A91D77D_ios_min11.0" */ = { + D31CF1F52E2F18FB00000000 /* Build configuration list for PBXNativeTarget "_idx_clip_vector_size_calculator_B472A55B_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000027 /* Debug */, - 89A98AE696F55C6100000027 /* Release */, - 36A6E613288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E614288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000030 /* Debug */, + C75F0BC2D33FB0ED00000030 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D992A5CB20B00000000 /* Build configuration list for PBXNativeTarget "_idx_ref_gpuimagemath_gpuimageutil_8BF43A5D_ios_min11.0" */ = { + D31CF1F5382419CD00000000 /* Build configuration list for PBXNativeTarget "_idx_MPPGraphGPUData_DE328030_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE6555922970000000B /* Debug */, - 89A98AE696F55C610000000B /* Release */, - 36A6E65F288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E660288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000019 /* Debug */, + C75F0BC2D33FB0ED00000019 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D992E6D2D6000000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_calculator_end_loop_calculator_6A228ACC_ios_min15.5" */ = { + D31CF1F53C8EC2F100000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_util_D57AACFF_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE6555922970000005B /* Debug */, - 89A98AE696F55C610000005B /* Release */, - 36A6E67D288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E67E288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D43467230000000F /* Debug */, + C75F0BC2D33FB0ED0000000F /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D992FECBD2900000000 /* Build configuration list for PBXNativeTarget "_idx_op_resolver_E390FDC7_ios_min11.0" */ = { + D31CF1F53DC2F8BB00000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE6555922970000004E /* Debug */, - 89A98AE696F55C610000004E /* Release */, - 36A6E64F288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E650288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D43467230000005B /* Debug */, + C75F0BC2D33FB0ED0000005B /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D99322E930900000000 /* Build configuration list for PBXNativeTarget "_idx_begin_loop_calculator_FEDA75EA_ios_min11.0" */ = { + D31CF1F53F42AD4900000000 /* Build configuration list for PBXNativeTarget "_idx_image_properties_calculator_gpu_service_941BB6CA_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE6555922970000002E /* Debug */, - 89A98AE696F55C610000002E /* Release */, - 36A6E5F7288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E5F8288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D43467230000002B /* Debug */, + C75F0BC2D33FB0ED0000002B /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D99345E966300000000 /* Build configuration list for PBXNativeTarget "_idx_split_vector_calculator_6654799A_ios_min15.5" */ = { + D31CF1F540FA78C200000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_calculator_77E4634D_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000053 /* Debug */, - 89A98AE696F55C6100000053 /* Release */, - 36A6E66D288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E66E288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D43467230000003C /* Debug */, + C75F0BC2D33FB0ED0000003C /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D9936EFDCB600000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_renderer_BE836363_ios_min15.5" */ = { + D31CF1F5426068CB00000000 /* Build configuration list for PBXNativeTarget "_idx_olamodule_common_library_9ADAC3A9_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE6555922970000002B /* Debug */, - 89A98AE696F55C610000002B /* Release */, - 36A6E5F5288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E5F6288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D43467230000000E /* Debug */, + C75F0BC2D33FB0ED0000000E /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D993750B25F00000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_interface_inference_calculator_cpu_AEFE6570_ios_min11.0" */ = { + D31CF1F5470F13F900000000 /* Build configuration list for PBXNativeTarget "_idx_non_max_suppression_calculator_E0C32C58_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000044 /* Debug */, - 89A98AE696F55C6100000044 /* Release */, - 36A6E633288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E634288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D43467230000004C /* Debug */, + C75F0BC2D33FB0ED0000004C /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D9937C5646800000000 /* 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_A15F304E_ios_min15.5" */ = { + D31CF1F54D78F78700000000 /* Build configuration list for PBXNativeTarget "_idx_MPPGraphGPUData_DE328030_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE6555922970000005D /* Debug */, - 89A98AE696F55C610000005D /* Release */, - 36A6E685288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E686288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000018 /* Debug */, + C75F0BC2D33FB0ED00000018 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D9939A3575700000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_detections_calculator_888E512F_ios_min15.5" */ = { + D31CF1F54DC1F93000000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_detections_calculator_B4C99DEA_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000055 /* Debug */, - 89A98AE696F55C6100000055 /* Release */, - 36A6E671288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E672288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000054 /* Debug */, + C75F0BC2D33FB0ED00000054 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D9939D12DEE00000000 /* Build configuration list for PBXNativeTarget "_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_AB0D0716_ios_min11.0" */ = { + D31CF1F54EEBF9AD00000000 /* Build configuration list for PBXNativeTarget "_idx_resource_util_0C14DDDC_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000034 /* Debug */, - 89A98AE696F55C6100000034 /* Release */, - 36A6E687288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E688288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000046 /* Debug */, + C75F0BC2D33FB0ED00000046 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D993C2C805100000000 /* Build configuration list for PBXNativeTarget "mediapipe-render-module-beauty-ios-OlaFaceUnityLibrary" */ = { + D31CF1F5563270AB00000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE6555922970000005E /* Debug */, - 89A98AE696F55C610000005E /* Release */, - 89A98AE6ACBECA4500000002 /* __TulsiTestRunner_Debug */, - 89A98AE6D9581F9600000002 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000012 /* Debug */, + C75F0BC2D33FB0ED00000012 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D993D661B0800000000 /* Build configuration list for PBXNativeTarget "_idx_FaceMeshGPULibrary_2BF20B88_ios_min15.5" */ = { + D31CF1F5581D203400000000 /* Build configuration list for PBXNativeTarget "_idx_core_core-ios_731E135C_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE6555922970000000D /* Debug */, - 89A98AE696F55C610000000D /* Release */, - 36A6E5DD288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E5DE288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D43467230000000A /* Debug */, + C75F0BC2D33FB0ED0000000A /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D993F54474500000000 /* Build configuration list for PBXNativeTarget "_idx_math_3043B97F_ios_min15.5" */ = { + D31CF1F5584994EA00000000 /* Build configuration list for PBXNativeTarget "_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000011 /* Debug */, - 89A98AE696F55C6100000011 /* Release */, - 36A6E63D288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E63E288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D43467230000005C /* Debug */, + C75F0BC2D33FB0ED0000005C /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D99406F85CE00000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_calculator_C3DB5E1E_ios_min11.0" */ = { + D31CF1F55A1A765300000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_renderer_1DCBFDF7_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE6555922970000003C /* Debug */, - 89A98AE696F55C610000003C /* Release */, - 36A6E627288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E628288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000023 /* Debug */, + C75F0BC2D33FB0ED00000023 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D994805BBB500000000 /* Build configuration list for PBXNativeTarget "_idx_MPPGraphGPUData_733A9D5A_ios_min15.5" */ = { + D31CF1F55BE97ADA00000000 /* Build configuration list for PBXNativeTarget "_idx_detection_projection_calculator_07107D71_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000019 /* Debug */, - 89A98AE696F55C6100000019 /* Release */, - 36A6E5E1288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E5E2288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D43467230000003B /* Debug */, + C75F0BC2D33FB0ED0000003B /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D994C2C3D9B00000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_op_resolver_741B9450_ios_min15.5" */ = { + D31CF1F567FA510300000000 /* Build configuration list for PBXNativeTarget "_idx_mediapipe_framework_ios_596FA5D1_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000036 /* Debug */, - 89A98AE696F55C6100000036 /* Release */, - 36A6E605288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E606288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D43467230000001B /* Debug */, + C75F0BC2D33FB0ED0000001B /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D9950C2A88D00000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_loader_F900857E_ios_min11.0" */ = { + D31CF1F5682B9BD300000000 /* Build configuration list for PBXNativeTarget "_idx_olamodule_common_library_9ADAC3A9_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000045 /* Debug */, - 89A98AE696F55C6100000045 /* Release */, - 36A6E67F288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E680288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000003 /* Debug */, + C75F0BC2D33FB0ED00000003 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D9951CA8D0300000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_gpu_buffer_format_BA46520A_ios_min15.5" */ = { + D31CF1F5704127CA00000000 /* Build configuration list for PBXProject "OlaFaceUnity" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000015 /* Debug */, - 89A98AE696F55C6100000015 /* Release */, - 36A6E621288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E622288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000000 /* Debug */, + C75F0BC2D33FB0ED00000000 /* Release */, + C75F0BC26AFB9FA200000000 /* __TulsiTestRunner_Debug */, + C75F0BC2FEC462CF00000000 /* __TulsiTestRunner_Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D9952E49A5D00000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalHelper_7397E6A5_ios_min15.5" */ = { + D31CF1F5770790E400000000 /* Build configuration list for PBXNativeTarget "_idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE6555922970000001C /* Debug */, - 89A98AE696F55C610000001C /* Release */, - 36A6E5E5288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E5E6288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000016 /* Debug */, + C75F0BC2D33FB0ED00000016 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D9953D5785900000000 /* Build configuration list for PBXNativeTarget "_idx_shader_util_F77AE4F3_ios_min15.5" */ = { + D31CF1F5771C263400000000 /* Build configuration list for PBXNativeTarget "_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000029 /* Debug */, - 89A98AE696F55C6100000029 /* Release */, - 36A6E669288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E66A288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D43467230000005D /* Debug */, + C75F0BC2D33FB0ED0000005D /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D9953E1984400000000 /* Build configuration list for PBXNativeTarget "_idx_core_core-ios_4EDC2AF0_ios_min15.5" */ = { + D31CF1F578F47AF400000000 /* Build configuration list for PBXNativeTarget "_idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE6555922970000000F /* Debug */, - 89A98AE696F55C610000000F /* Release */, - 36A6E601288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E602288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000041 /* Debug */, + C75F0BC2D33FB0ED00000041 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D9954F5EA3D00000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalHelper_7397E6A5_ios_min11.0" */ = { + D31CF1F57996204C00000000 /* Build configuration list for PBXNativeTarget "_idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE6555922970000001A /* Debug */, - 89A98AE696F55C610000001A /* Release */, - 36A6E5E3288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E5E4288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D43467230000003E /* Debug */, + C75F0BC2D33FB0ED0000003E /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D99572B977600000000 /* Build configuration list for PBXNativeTarget "_idx_previous_loopback_calculator_header_util_D9AEB78A_ios_min11.0" */ = { + D31CF1F57A35429E00000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000050 /* Debug */, - 89A98AE696F55C6100000050 /* Release */, - 36A6E657288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E658288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000013 /* Debug */, + C75F0BC2D33FB0ED00000013 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D9959CD9AE000000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_metal_712F45E9_ios_min11.0" */ = { + D31CF1F57AD665A800000000 /* Build configuration list for PBXNativeTarget "_idx_op_resolver_29CCF89E_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE6555922970000004A /* Debug */, - 89A98AE696F55C610000004A /* Release */, - 36A6E637288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E638288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D43467230000004F /* Debug */, + C75F0BC2D33FB0ED0000004F /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D9959E8B5A300000000 /* Build configuration list for PBXNativeTarget "_idx_clip_vector_size_calculator_02FA2733_ios_min11.0" */ = { + D31CF1F57D6EEAA600000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_opencv_1FC75D94_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000030 /* Debug */, - 89A98AE696F55C6100000030 /* Release */, - 36A6E5FB288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E5FC288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000040 /* Debug */, + C75F0BC2D33FB0ED00000040 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D996039A2BE00000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_opencv_F40C896E_ios_min11.0" */ = { + D31CF1F58394EFF100000000 /* Build configuration list for PBXNativeTarget "_idx_FaceMeshGPULibrary_61E6B091_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE6555922970000003D /* Debug */, - 89A98AE696F55C610000003D /* Release */, - 36A6E62F288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E630288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000002 /* Debug */, + C75F0BC2D33FB0ED00000002 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D9963E757BC00000000 /* Build configuration list for PBXNativeTarget "_idx_mediapipe_framework_ios_E5983FAB_ios_min15.5" */ = { + D31CF1F5840DC56100000000 /* Build configuration list for PBXNativeTarget "_idx_gl_calculator_helper_6AE62265_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE6555922970000001D /* Debug */, - 89A98AE696F55C610000001D /* Release */, - 36A6E645288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E646288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D43467230000002A /* Debug */, + C75F0BC2D33FB0ED0000002A /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D996551CEE700000000 /* Build configuration list for PBXLegacyTarget "_bazel_clean_" */ = { + D31CF1F5842E851000000000 /* Build configuration list for PBXNativeTarget "_idx_split_vector_calculator_73890910_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - 36A6E5D7288691D200169063 /* Debug */, - 36A6E5D8288691D200169063 /* Release */, - 36A6E5D9288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E5DA288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000052 /* Debug */, + C75F0BC2D33FB0ED00000052 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D9965A4196200000000 /* Build configuration list for PBXNativeTarget "_idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_7F9F05C6_ios_min11.0" */ = { + D31CF1F584850D7B00000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_metal_A1DB3550_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE6555922970000003E /* Debug */, - 89A98AE696F55C610000003E /* Release */, - 36A6E65B288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E65C288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000042 /* Debug */, + C75F0BC2D33FB0ED00000042 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D9965EDE81500000000 /* Build configuration list for PBXNativeTarget "_idx_non_max_suppression_calculator_EA803631_ios_min11.0" */ = { + D31CF1F585DB7B5E00000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE6555922970000004C /* Debug */, - 89A98AE696F55C610000004C /* Release */, - 36A6E647288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E648288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000008 /* Debug */, + C75F0BC2D33FB0ED00000008 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D9968A23B8500000000 /* Build configuration list for PBXNativeTarget "_idx_math_3043B97F_ios_min11.0" */ = { + D31CF1F5862CD19300000000 /* Build configuration list for PBXNativeTarget "_idx_begin_loop_calculator_55C0335F_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE6555922970000000C /* Debug */, - 89A98AE696F55C610000000C /* Release */, - 36A6E63B288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E63C288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D43467230000002E /* Debug */, + C75F0BC2D33FB0ED0000002E /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D996B754CB900000000 /* Build configuration list for PBXNativeTarget "_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_AB0D0716_ios_min15.5" */ = { + D31CF1F58846F13F00000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_renderer_1DCBFDF7_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000039 /* Debug */, - 89A98AE696F55C6100000039 /* Release */, - 36A6E689288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E68A288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D43467230000002D /* Debug */, + C75F0BC2D33FB0ED0000002D /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D99713C107300000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_util_B64315B8_ios_min15.5" */ = { + D31CF1F5915544F700000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_loader_6F62D289_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000017 /* Debug */, - 89A98AE696F55C6100000017 /* Release */, - 36A6E609288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E60A288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000045 /* Debug */, + C75F0BC2D33FB0ED00000045 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D997AA3FFA400000000 /* Build configuration list for PBXNativeTarget "_idx_non_max_suppression_calculator_EA803631_ios_min15.5" */ = { + D31CF1F5A618424C00000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalHelper_8A6739B5_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE6555922970000004D /* Debug */, - 89A98AE696F55C610000004D /* Release */, - 36A6E649288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E64A288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D43467230000001C /* Debug */, + C75F0BC2D33FB0ED0000001C /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D997EA5083300000000 /* Build configuration list for PBXProject "OlaFaceUnity" */ = { + D31CF1F5A67AB4C800000000 /* Build configuration list for PBXNativeTarget "_idx_transpose_conv_bias_94247583_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000000 /* Debug */, - 89A98AE696F55C6100000000 /* Release */, - 89A98AE6ACBECA4500000000 /* __TulsiTestRunner_Debug */, - 89A98AE6D9581F9600000000 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000039 /* Debug */, + C75F0BC2D33FB0ED00000039 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D997FA4A65900000000 /* Build configuration list for PBXNativeTarget "_idx_olamodule_common_library_4A2D4D8A_ios_min15.5" */ = { + D31CF1F5A9FB717B00000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE6555922970000000E /* Debug */, - 89A98AE696F55C610000000E /* Release */, - 36A6E64D288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E64E288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000056 /* Debug */, + C75F0BC2D33FB0ED00000056 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D9980BA837500000000 /* Build configuration list for PBXNativeTarget "_idx_ref_gpuimagemath_gpuimageutil_8BF43A5D_ios_min15.5" */ = { + D31CF1F5AB45DADF00000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalHelper_8A6739B5_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000010 /* Debug */, - 89A98AE696F55C6100000010 /* Release */, - 36A6E661288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E662288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D43467230000001A /* Debug */, + C75F0BC2D33FB0ED0000001A /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D9981E502F700000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_custom_op_resolver_calculator_042597A8_ios_min11.0" */ = { + D31CF1F5AC9881C700000000 /* Build configuration list for PBXNativeTarget "_idx_pixel_buffer_pool_util_C139F8B5_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000058 /* Debug */, - 89A98AE696F55C6100000058 /* Release */, - 36A6E677288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E678288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000010 /* Debug */, + C75F0BC2D33FB0ED00000010 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D9984E04B4800000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_calculator_C3DB5E1E_ios_min15.5" */ = { + D31CF1F5AF09680200000000 /* Build configuration list for PBXNativeTarget "_idx_gl_simple_shaders_2CB9CEAD_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE6555922970000003F /* Debug */, - 89A98AE696F55C610000003F /* Release */, - 36A6E629288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E62A288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000024 /* Debug */, + C75F0BC2D33FB0ED00000024 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D9984FD43B400000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_calculator_end_loop_calculator_6A228ACC_ios_min11.0" */ = { + D31CF1F5AFE1395B00000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_calculator_77E4634D_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE6555922970000005A /* Debug */, - 89A98AE696F55C610000005A /* Release */, - 36A6E67B288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E67C288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D43467230000003F /* Debug */, + C75F0BC2D33FB0ED0000003F /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D9985FAB61600000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_renderer_BE836363_ios_min11.0" */ = { + D31CF1F5B359006A00000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_overlay_calculator_7772C341_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000023 /* Debug */, - 89A98AE696F55C6100000023 /* Release */, - 36A6E5F3288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E5F4288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000028 /* Debug */, + C75F0BC2D33FB0ED00000028 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D998657695200000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_overlay_calculator_7B50CB48_ios_min15.5" */ = { + D31CF1F5B4E3FF4C00000000 /* Build configuration list for PBXNativeTarget "_idx_max_unpooling_max_pool_argmax_09627F19_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000028 /* Debug */, - 89A98AE696F55C6100000028 /* Release */, - 36A6E5F1288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E5F2288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000037 /* Debug */, + C75F0BC2D33FB0ED00000037 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D9987A36DA900000000 /* Build configuration list for PBXNativeTarget "_idx_split_vector_calculator_6654799A_ios_min11.0" */ = { + D31CF1F5B5CDCA6B00000000 /* Build configuration list for PBXLegacyTarget "_bazel_clean_" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000052 /* Debug */, - 89A98AE696F55C6100000052 /* Release */, - 36A6E66B288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E66C288691D200169063 /* __TulsiTestRunner_Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D99896DC09700000000 /* Build configuration list for PBXNativeTarget "_idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_7F9F05C6_ios_min15.5" */ = { + D31CF1F5B769070700000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000040 /* Debug */, - 89A98AE696F55C6100000040 /* Release */, - 36A6E65D288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E65E288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000006 /* Debug */, + C75F0BC2D33FB0ED00000006 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D998B11C4FB00000000 /* Build configuration list for PBXNativeTarget "_idx_mediapipe_framework_ios_E5983FAB_ios_min11.0" */ = { + D31CF1F5B8217D6500000000 /* Build configuration list for PBXNativeTarget "_idx_begin_loop_calculator_55C0335F_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE6555922970000001B /* Debug */, - 89A98AE696F55C610000001B /* Release */, - 36A6E643288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E644288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D43467230000002F /* Debug */, + C75F0BC2D33FB0ED0000002F /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D9992B2D59900000000 /* Build configuration list for PBXNativeTarget "_idx_transpose_conv_bias_207EFBC1_ios_min15.5" */ = { + D31CF1F5B89761A500000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_loader_6F62D289_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000038 /* Debug */, - 89A98AE696F55C6100000038 /* Release */, - 36A6E68D288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E68E288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000048 /* Debug */, + C75F0BC2D33FB0ED00000048 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D99940D2EC900000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_26C42D3D_ios_min11.0" */ = { + D31CF1F5BEDCDC1900000000 /* Build configuration list for PBXNativeTarget "_idx_resource_util_0C14DDDC_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000007 /* Debug */, - 89A98AE696F55C6100000007 /* Release */, - 36A6E61B288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E61C288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000049 /* Debug */, + C75F0BC2D33FB0ED00000049 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D999444475C00000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_opencv_F40C896E_ios_min15.5" */ = { + D31CF1F5C0DCCE1E00000000 /* Build configuration list for PBXNativeTarget "_idx_mediapipe_framework_ios_596FA5D1_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000041 /* Debug */, - 89A98AE696F55C6100000041 /* Release */, - 36A6E631288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E632288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D43467230000001D /* Debug */, + C75F0BC2D33FB0ED0000001D /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D9997443EAB00000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_7ED8D1B5_ios_min15.5" */ = { + D31CF1F5C0E3514600000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalUtil_622319D3_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000057 /* Debug */, - 89A98AE696F55C6100000057 /* Release */, - 36A6E675288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E676288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D43467230000001E /* Debug */, + C75F0BC2D33FB0ED0000001E /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D999F4275A500000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_loader_F900857E_ios_min15.5" */ = { + D31CF1F5C2B47BB900000000 /* Build configuration list for PBXNativeTarget "_idx_max_unpooling_max_pool_argmax_09627F19_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000048 /* Debug */, - 89A98AE696F55C6100000048 /* Release */, - 36A6E681288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E682288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000035 /* Debug */, + C75F0BC2D33FB0ED00000035 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D99A08B5FEF00000000 /* Build configuration list for PBXNativeTarget "_idx_detection_projection_calculator_9B95E740_ios_min11.0" */ = { + D31CF1F5C4CBD0A700000000 /* Build configuration list for PBXNativeTarget "_idx_pixel_buffer_pool_util_C139F8B5_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE6555922970000003A /* Debug */, - 89A98AE696F55C610000003A /* Release */, - 36A6E60B288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E60C288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000007 /* Debug */, + C75F0BC2D33FB0ED00000007 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D99A0A46A3400000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_interface_inference_calculator_cpu_AEFE6570_ios_min15.5" */ = { + D31CF1F5C895ABFC00000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_overlay_calculator_7772C341_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000047 /* Debug */, - 89A98AE696F55C6100000047 /* Release */, - 36A6E635288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E636288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000022 /* Debug */, + C75F0BC2D33FB0ED00000022 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D99A133568300000000 /* Build configuration list for PBXNativeTarget "_idx_gl_calculator_helper_D8986C65_ios_min15.5" */ = { + D31CF1F5C9D1E94200000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_opencv_1FC75D94_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE6555922970000002C /* Debug */, - 89A98AE696F55C610000002C /* Release */, - 36A6E611288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E612288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D43467230000003D /* Debug */, + C75F0BC2D33FB0ED0000003D /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D99A5D46CA400000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalUtil_E63D8158_ios_min15.5" */ = { + D31CF1F5CB2C76A700000000 /* Build configuration list for PBXNativeTarget "_idx_clip_vector_size_calculator_B472A55B_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE6555922970000001F /* Debug */, - 89A98AE696F55C610000001F /* Release */, - 36A6E5E9288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E5EA288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000031 /* Debug */, + C75F0BC2D33FB0ED00000031 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D99A642A64F00000000 /* Build configuration list for PBXNativeTarget "_idx_FaceMeshGPULibrary_2BF20B88_ios_min11.0" */ = { + D31CF1F5CD20A9BC00000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000002 /* Debug */, - 89A98AE696F55C6100000002 /* Release */, - 36A6E5DB288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E5DC288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000058 /* Debug */, + C75F0BC2D33FB0ED00000058 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D99A6B30FDC00000000 /* Build configuration list for PBXNativeTarget "_idx_pixel_buffer_pool_util_1B0D8C74_ios_min15.5" */ = { + D31CF1F5CDECDB0700000000 /* Build configuration list for PBXNativeTarget "_idx_shader_util_209E4ED9_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000012 /* Debug */, - 89A98AE696F55C6100000012 /* Release */, - 36A6E655288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E656288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000027 /* Debug */, + C75F0BC2D33FB0ED00000027 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D99A6D80A6900000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_metal_9AA64D0A_ios_min15.5" */ = { + D31CF1F5CE77D67600000000 /* Build configuration list for PBXNativeTarget "_idx_OlaFaceUnityLibrary_63B2D14F_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000043 /* Debug */, - 89A98AE696F55C6100000043 /* Release */, - 36A6E62D288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E62E288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000020 /* Debug */, + C75F0BC2D33FB0ED00000020 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D99A8D18AAC00000000 /* Build configuration list for PBXNativeTarget "_idx_previous_loopback_calculator_header_util_D9AEB78A_ios_min15.5" */ = { + D31CF1F5D01558D200000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_metal_65084AC7_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000051 /* Debug */, - 89A98AE696F55C6100000051 /* Release */, - 36A6E659288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E65A288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D43467230000004A /* Debug */, + C75F0BC2D33FB0ED0000004A /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D99A93DAF1A00000000 /* Build configuration list for PBXNativeTarget "_idx_max_unpooling_max_pool_argmax_92E156D6_ios_min15.5" */ = { + D31CF1F5D2B0183C00000000 /* Build configuration list for PBXNativeTarget "mediapipe-render-module-beauty-ios-OlaFaceUnityLibrary" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000037 /* Debug */, - 89A98AE696F55C6100000037 /* Release */, - 36A6E641288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E642288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D43467230000005E /* Debug */, + C75F0BC2D33FB0ED0000005E /* Release */, + C75F0BC26AFB9FA200000002 /* __TulsiTestRunner_Debug */, + C75F0BC2FEC462CF00000002 /* __TulsiTestRunner_Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D99AFA7731000000000 /* 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_A15F304E_ios_min11.0" */ = { + D31CF1F5D39116C600000000 /* Build configuration list for PBXNativeTarget "_idx_FaceMeshGPULibrary_61E6B091_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE6555922970000005C /* Debug */, - 89A98AE696F55C610000005C /* Release */, - 36A6E683288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E684288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D43467230000000D /* Debug */, + C75F0BC2D33FB0ED0000000D /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D99B15CAA1600000000 /* Build configuration list for PBXNativeTarget "_idx_resource_util_B6FA1F0B_ios_min15.5" */ = { + D31CF1F5D433B4FA00000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000049 /* Debug */, - 89A98AE696F55C6100000049 /* Release */, - 36A6E665288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E666288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D43467230000005A /* Debug */, + C75F0BC2D33FB0ED0000005A /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D99B516DF3400000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_7ED8D1B5_ios_min11.0" */ = { + D31CF1F5D4B3E68C00000000 /* Build configuration list for PBXNativeTarget "_idx_util_66001351_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000056 /* Debug */, - 89A98AE696F55C6100000056 /* Release */, - 36A6E673288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E674288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000011 /* Debug */, + C75F0BC2D33FB0ED00000011 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D99BA5925E000000000 /* Build configuration list for PBXNativeTarget "_idx_max_unpooling_max_pool_argmax_92E156D6_ios_min11.0" */ = { + D31CF1F5D6333A3300000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000033 /* Debug */, - 89A98AE696F55C6100000033 /* Release */, - 36A6E63F288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E640288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000057 /* Debug */, + C75F0BC2D33FB0ED00000057 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D99BD5C422900000000 /* Build configuration list for PBXNativeTarget "_idx_MPPGraphGPUData_733A9D5A_ios_min11.0" */ = { + D31CF1F5D6A89A3300000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalUtil_622319D3_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000018 /* Debug */, - 89A98AE696F55C6100000018 /* Release */, - 36A6E5DF288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E5E0288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D43467230000001F /* Debug */, + C75F0BC2D33FB0ED0000001F /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D99BE7CD17800000000 /* Build configuration list for PBXNativeTarget "_idx_begin_loop_calculator_FEDA75EA_ios_min15.5" */ = { + D31CF1F5D6C9910D00000000 /* Build configuration list for PBXNativeTarget "_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE6555922970000002F /* Debug */, - 89A98AE696F55C610000002F /* Release */, - 36A6E5F9288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E5FA288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000038 /* Debug */, + C75F0BC2D33FB0ED00000038 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D99C161904800000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_multi_pool_gl_context_4D0E07B8_ios_min15.5" */ = { + D31CF1F5D8B7B51300000000 /* Build configuration list for PBXNativeTarget "_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000016 /* Debug */, - 89A98AE696F55C6100000016 /* Release */, - 36A6E619288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E61A288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000033 /* Debug */, + C75F0BC2D33FB0ED00000033 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D99C847318E00000000 /* Build configuration list for PBXNativeTarget "_idx_olamodule_common_library_4A2D4D8A_ios_min11.0" */ = { + D31CF1F5DBB222FF00000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_metal_A1DB3550_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000003 /* Debug */, - 89A98AE696F55C6100000003 /* Release */, - 36A6E64B288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E64C288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000043 /* Debug */, + C75F0BC2D33FB0ED00000043 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D99C8B73DBA00000000 /* Build configuration list for PBXNativeTarget "_idx_shader_util_F77AE4F3_ios_min11.0" */ = { + D31CF1F5E12C3CB500000000 /* Build configuration list for PBXNativeTarget "_idx_math_661952D5_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000024 /* Debug */, - 89A98AE696F55C6100000024 /* Release */, - 36A6E667288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E668288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D43467230000000C /* Debug */, + C75F0BC2D33FB0ED0000000C /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D99D29FC5F000000000 /* Build configuration list for PBXNativeTarget "_idx_detection_projection_calculator_9B95E740_ios_min15.5" */ = { + D31CF1F5E5FE63D100000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE6555922970000003B /* Debug */, - 89A98AE696F55C610000003B /* Release */, - 36A6E60D288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E60E288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000059 /* Debug */, + C75F0BC2D33FB0ED00000059 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D99D3524F2C00000000 /* Build configuration list for PBXNativeTarget "_idx_util_28409609_ios_min15.5" */ = { + D31CF1F5EE7EDAB300000000 /* Build configuration list for PBXNativeTarget "_idx_image_properties_calculator_gpu_service_941BB6CA_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000013 /* Debug */, - 89A98AE696F55C6100000013 /* Release */, - 36A6E691288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E692288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000026 /* Debug */, + C75F0BC2D33FB0ED00000026 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D99D9ED7AAD00000000 /* Build configuration list for PBXNativeTarget "_idx_op_resolver_E390FDC7_ios_min15.5" */ = { + D31CF1F5F0D47DA200000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE6555922970000004F /* Debug */, - 89A98AE696F55C610000004F /* Release */, - 36A6E651288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E652288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000005 /* Debug */, + C75F0BC2D33FB0ED00000005 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D99DA31051A00000000 /* Build configuration list for PBXNativeTarget "_idx_image_properties_calculator_gpu_service_6BF370A2_ios_min11.0" */ = { + D31CF1F5F0E99D4C00000000 /* Build configuration list for PBXNativeTarget "_idx_gl_simple_shaders_2CB9CEAD_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000026 /* Debug */, - 89A98AE696F55C6100000026 /* Release */, - 36A6E623288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E624288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000029 /* Debug */, + C75F0BC2D33FB0ED00000029 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D99DB0558BC00000000 /* Build configuration list for PBXNativeTarget "_idx_core_core-ios_4EDC2AF0_ios_min11.0" */ = { + D31CF1F5F37A159900000000 /* Build configuration list for PBXNativeTarget "_idx_shader_util_209E4ED9_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE6555922970000000A /* Debug */, - 89A98AE696F55C610000000A /* Release */, - 36A6E5FF288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E600288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D43467230000002C /* Debug */, + C75F0BC2D33FB0ED0000002C /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D99EB68CF0F00000000 /* Build configuration list for PBXNativeTarget "_idx_util_28409609_ios_min11.0" */ = { + D31CF1F5F41F3C3600000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_metal_65084AC7_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000004 /* Debug */, - 89A98AE696F55C6100000004 /* Release */, - 36A6E68F288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E690288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D43467230000004B /* Debug */, + C75F0BC2D33FB0ED0000004B /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D99F3B6E6E100000000 /* Build configuration list for PBXNativeTarget "OlaFaceUnityFramework" */ = { + D31CF1F5F6AC550300000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_util_D57AACFF_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000001 /* Debug */, - 89A98AE696F55C6100000001 /* Release */, - 89A98AE6ACBECA4500000001 /* __TulsiTestRunner_Debug */, - 89A98AE6D9581F9600000001 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000009 /* Debug */, + C75F0BC2D33FB0ED00000009 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D99F5AFBACB00000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_metal_9AA64D0A_ios_min11.0" */ = { + D31CF1F5F71DCC4600000000 /* Build configuration list for PBXNativeTarget "OlaFaceUnityFramework" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000042 /* Debug */, - 89A98AE696F55C6100000042 /* Release */, - 36A6E62B288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E62C288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D434672300000001 /* Debug */, + C75F0BC2D33FB0ED00000001 /* Release */, + C75F0BC26AFB9FA200000001 /* __TulsiTestRunner_Debug */, + C75F0BC2FEC462CF00000001 /* __TulsiTestRunner_Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D99FD0A1C6D00000000 /* Build configuration list for PBXNativeTarget "_idx_transpose_conv_bias_207EFBC1_ios_min11.0" */ = { + D31CF1F5F90A485C00000000 /* Build configuration list for PBXNativeTarget "_idx_detection_projection_calculator_07107D71_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000035 /* Debug */, - 89A98AE696F55C6100000035 /* Release */, - 36A6E68B288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E68C288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D43467230000003A /* Debug */, + C75F0BC2D33FB0ED0000003A /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - FA986D99FF0D22E400000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_custom_op_resolver_calculator_042597A8_ios_min15.5" */ = { + D31CF1F5FC74391300000000 /* Build configuration list for PBXNativeTarget "_idx_non_max_suppression_calculator_E0C32C58_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89A98AE65559229700000059 /* Debug */, - 89A98AE696F55C6100000059 /* Release */, - 36A6E679288691D200169063 /* __TulsiTestRunner_Debug */, - 36A6E67A288691D200169063 /* __TulsiTestRunner_Release */, + C75F0BC2D43467230000004D /* Debug */, + C75F0BC2D33FB0ED0000004D /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; /* End XCConfigurationList section */ }; - rootObject = E8D406AA11D4451E00000000 /* Project object */; -} + rootObject = 22488B02D730B92B00000000 /* Project object */; +} \ No newline at end of file diff --git a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings index 405ec8295..a821c4662 100644 --- a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +++ b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings @@ -10,7 +10,5 @@ IDEWorkspaceSharedSettings_AutocreateContextsIfNeeded - PreviewsEnabled - diff --git a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/xcshareddata/xcschemes/OlaFaceUnityFramework.xcscheme b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/xcshareddata/xcschemes/OlaFaceUnityFramework.xcscheme index d9b8ed90b..bf4bf11c2 100644 --- a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/xcshareddata/xcschemes/OlaFaceUnityFramework.xcscheme +++ b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/xcshareddata/xcschemes/OlaFaceUnityFramework.xcscheme @@ -1,29 +1,29 @@ - + - - + + - + - + - + - + - + - + - + \ No newline at end of file diff --git a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/xcshareddata/xcschemes/_idx_Scheme.xcscheme b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/xcshareddata/xcschemes/_idx_Scheme.xcscheme index 0bbe7945e..687b346fa 100644 --- a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/xcshareddata/xcschemes/_idx_Scheme.xcscheme +++ b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/xcshareddata/xcschemes/_idx_Scheme.xcscheme @@ -1,598 +1,598 @@ - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - - + + - - - - - + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + \ No newline at end of file diff --git a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/xcshareddata/xcschemes/mediapipe-render-module-beauty-ios-OlaFaceUnityLibrary.xcscheme b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/xcshareddata/xcschemes/mediapipe-render-module-beauty-ios-OlaFaceUnityLibrary.xcscheme index b0baa4ace..c1937e011 100644 --- a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/xcshareddata/xcschemes/mediapipe-render-module-beauty-ios-OlaFaceUnityLibrary.xcscheme +++ b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/xcshareddata/xcschemes/mediapipe-render-module-beauty-ios-OlaFaceUnityLibrary.xcscheme @@ -1,27 +1,27 @@ - - + + - - + + - + - + - + - + - + - + diff --git a/mediapipe/render/module/common/ola_graph.h b/mediapipe/render/module/common/ola_graph.h index 0470300a9..bae2a6ea9 100644 --- a/mediapipe/render/module/common/ola_graph.h +++ b/mediapipe/render/module/common/ola_graph.h @@ -29,17 +29,21 @@ namespace Opipe class MPPGraphDelegate { public: + + MPPGraphDelegate() {}; + + ~MPPGraphDelegate() {}; #if defined(__APPLE__) virtual void outputPixelbuffer(OlaGraph *graph, CVPixelBufferRef pixelbuffer, const std::string &streamName, - int64_t timstamp); + int64_t timstamp) = 0; #endif virtual void outputPacket(OlaGraph *graph, const mediapipe::Packet &packet, MPPPacketType packetType, - const std::string &streamName); + const std::string &streamName) = 0; }; class OlaGraph diff --git a/mediapipe/render/module/render_queue/OlaRenderIMP.cpp b/mediapipe/render/module/render_queue/OlaRenderIMP.cpp index b46dafd33..2aaf41fb3 100644 --- a/mediapipe/render/module/render_queue/OlaRenderIMP.cpp +++ b/mediapipe/render/module/render_queue/OlaRenderIMP.cpp @@ -406,7 +406,7 @@ void OLARenderIMP::setCanvasPixels(int width, int height, const void *pixels, in glClear(GL_COLOR_BUFFER_BIT); glActiveTexture(GL_TEXTURE0); glBindTexture(GL_TEXTURE_2D, _transformTexture); - Log("OLARender", "transformTexture :%d", _transformTexture); + Log("Opipe", "transformTexture :%d", _transformTexture); glUniform1i(_transformTextureSlot, 0); glUniformMatrix4fv(_transform_mvp, 1, GL_FALSE, (GLfloat * ) & _mvp_matrix); diff --git a/mediapipe/render/module/render_queue/RenderJni.cpp b/mediapipe/render/module/render_queue/RenderJni.cpp index c675c0847..d855c5083 100644 --- a/mediapipe/render/module/render_queue/RenderJni.cpp +++ b/mediapipe/render/module/render_queue/RenderJni.cpp @@ -19,7 +19,7 @@ extern "C" JNIEXPORT jlong JNICALL Java_com_weatherfish_render_RenderJni_create(JNIEnv *env, jobject thiz) { - auto *render = OLARender::OlaRender::create(); + auto *render = Opipe::OlaRender::create(); return reinterpret_cast(render); } @@ -27,8 +27,8 @@ extern "C" JNIEXPORT jint JNICALL Java_com_weatherfish_render_RenderJni_render(JNIEnv *env, jobject thiz, jlong render_context, jint texture_id, jint width, jint height, jlong timestamp, jboolean exportFlag) { - auto *render = reinterpret_cast(render_context); - OLARender::TextureInfo info; + auto *render = reinterpret_cast(render_context); + Opipe::TextureInfo info; info.textureId = texture_id; info.width = width; info.height = height; @@ -40,6 +40,6 @@ Java_com_weatherfish_render_RenderJni_render(JNIEnv *env, jobject thiz, jlong re extern "C" JNIEXPORT void JNICALL Java_com_weatherfish_render_RenderJni_release(JNIEnv *env, jobject thiz, jlong renderId) { - auto *render = reinterpret_cast(renderId); + auto *render = reinterpret_cast(renderId); render->release(); } diff --git a/mediapipe/render/module/render_queue/macros.h b/mediapipe/render/module/render_queue/macros.h index 102cdb1e9..4c009d19e 100755 --- a/mediapipe/render/module/render_queue/macros.h +++ b/mediapipe/render/module/render_queue/macros.h @@ -17,9 +17,9 @@ #define PLATFORM PLATFORM_IOS #endif -#define NS_OLA_BEGIN namespace OLARender { +#define NS_OLA_BEGIN namespace Opipe { #define NS_OLA_END } -#define USING_NS_OLA using namespace OLARender; +#define USING_NS_OLA using namespace Opipe; #define STRINGIZE(x) #x @@ -47,7 +47,7 @@ case GL_OUT_OF_MEMORY: errorString = "GL_OUT_OF_MEMORY"; break; \ default: break; \ } \ - OLARender::Log("ERROR", "GL ERROR 0x%04X %s in %s at line %i\n", e, \ + Opipe::Log("ERROR", "GL ERROR 0x%04X %s in %s at line %i\n", e, \ errorString.c_str(), __PRETTY_FUNCTION__, __LINE__); \ assert(0);\ } \ diff --git a/mediapipe/render/module/render_queue/math/mat4.cpp b/mediapipe/render/module/render_queue/math/mat4.cpp index d2d320559..fd9e7e5c0 100644 --- a/mediapipe/render/module/render_queue/math/mat4.cpp +++ b/mediapipe/render/module/render_queue/math/mat4.cpp @@ -1,6 +1,6 @@ // // Mat4.cpp -// OLARender +// Opipe // // Created by Wang,Renzhu on 2018/11/20. // Copyright © 2018年 Wang,Renzhu. All rights reserved. @@ -15,7 +15,7 @@ #endif #include -namespace OLARender { +namespace Opipe { static const int MATRIX_SIZE = (sizeof(float) * 16); diff --git a/mediapipe/render/module/render_queue/math/mat4.hpp b/mediapipe/render/module/render_queue/math/mat4.hpp index c45fad219..e91bd2081 100644 --- a/mediapipe/render/module/render_queue/math/mat4.hpp +++ b/mediapipe/render/module/render_queue/math/mat4.hpp @@ -1,6 +1,6 @@ // // mat4.h -// OLARender +// Opipe // // Created by Wang,Renzhu on 2018/11/20. // Copyright © 2018年 Wang,Renzhu. All rights reserved. @@ -12,7 +12,7 @@ #include "vec3.hpp" #include "vec4.hpp" -namespace OLARender { +namespace Opipe { class Mat4 { diff --git a/mediapipe/render/module/render_queue/math/mat4.inl b/mediapipe/render/module/render_queue/math/mat4.inl index ea8fa5cbb..e8ddaa6e6 100644 --- a/mediapipe/render/module/render_queue/math/mat4.inl +++ b/mediapipe/render/module/render_queue/math/mat4.inl @@ -8,7 +8,7 @@ #include "mat4.hpp" -namespace OLARender { +namespace Opipe { inline Mat4 Mat4::operator+(const Mat4& mat) const { diff --git a/mediapipe/render/module/render_queue/math/math_utils.cpp b/mediapipe/render/module/render_queue/math/math_utils.cpp index 14b984354..fc34ee89d 100644 --- a/mediapipe/render/module/render_queue/math/math_utils.cpp +++ b/mediapipe/render/module/render_queue/math/math_utils.cpp @@ -1,6 +1,6 @@ // // math_utils.cpp -// OLARender +// Opipe // // Created by Wang,Renzhu on 2018/11/20. // Copyright © 2018年 Wang,Renzhu. All rights reserved. @@ -13,7 +13,7 @@ #endif #include -namespace OLARender { +namespace Opipe { static const int MATRIX_SIZE = (sizeof(float) * 16); diff --git a/mediapipe/render/module/render_queue/math/math_utils.hpp b/mediapipe/render/module/render_queue/math/math_utils.hpp index 3d8c08098..3e95e92c8 100644 --- a/mediapipe/render/module/render_queue/math/math_utils.hpp +++ b/mediapipe/render/module/render_queue/math/math_utils.hpp @@ -1,6 +1,6 @@ // // math_utils.h -// OLARender +// Opipe // // Created by Wang,Renzhu on 2018/11/20. // Copyright © 2018年 Wang,Renzhu. All rights reserved. @@ -26,7 +26,7 @@ #define MATH_FLOAT_EQUAL(src, dst) (((src) >= (dst) - MATH_EPSILON) && ((src) <= (dst) + MATH_EPSILON)) -namespace OLARender { +namespace Opipe { class MathUtils { diff --git a/mediapipe/render/module/render_queue/math/vec2.cpp b/mediapipe/render/module/render_queue/math/vec2.cpp index 81c666aa6..f557949a3 100644 --- a/mediapipe/render/module/render_queue/math/vec2.cpp +++ b/mediapipe/render/module/render_queue/math/vec2.cpp @@ -1,6 +1,6 @@ // // vec2.cpp -// OLARender +// Opipe // // Created by Wang,Renzhu on 2018/11/20. // Copyright © 2018年 Wang,Renzhu. All rights reserved. @@ -13,7 +13,7 @@ #include "vec2.hpp" #include "math_utils.hpp" #endif -namespace OLARender { +namespace Opipe { float Vec2::angle(const Vec2& v1, const Vec2& v2) { diff --git a/mediapipe/render/module/render_queue/math/vec2.hpp b/mediapipe/render/module/render_queue/math/vec2.hpp index 79c6b795c..e2cbd4adc 100644 --- a/mediapipe/render/module/render_queue/math/vec2.hpp +++ b/mediapipe/render/module/render_queue/math/vec2.hpp @@ -1,6 +1,6 @@ // // vec2.h -// OLARender +// Opipe // // Created by Wang,Renzhu on 2018/11/20. // Copyright © 2018年 Wang,Renzhu. All rights reserved. @@ -12,7 +12,7 @@ #include #include -namespace OLARender { +namespace Opipe { inline float clampf(float value, float min_inclusive, float max_inclusive) { if (min_inclusive > max_inclusive) { diff --git a/mediapipe/render/module/render_queue/math/vec2.inl b/mediapipe/render/module/render_queue/math/vec2.inl index e101a3c6c..a24349ba2 100644 --- a/mediapipe/render/module/render_queue/math/vec2.inl +++ b/mediapipe/render/module/render_queue/math/vec2.inl @@ -8,7 +8,7 @@ #include "vec2.hpp" -namespace OLARender { +namespace Opipe { inline Vec2::Vec2() : x(0.0f), y(0.0f) { diff --git a/mediapipe/render/module/render_queue/math/vec3.cpp b/mediapipe/render/module/render_queue/math/vec3.cpp index 1f905d784..4274130af 100644 --- a/mediapipe/render/module/render_queue/math/vec3.cpp +++ b/mediapipe/render/module/render_queue/math/vec3.cpp @@ -1,6 +1,6 @@ // // vec3.cpp -// OLARender +// Opipe // // Created by Wang,Renzhu on 2018/11/20. // Copyright © 2018年 Wang,Renzhu. All rights reserved. @@ -14,7 +14,7 @@ #include "math_utils.hpp" #endif -namespace OLARender { +namespace Opipe { Vec3::Vec3() : x(0.0f), y(0.0f), z(0.0f) { } diff --git a/mediapipe/render/module/render_queue/math/vec3.hpp b/mediapipe/render/module/render_queue/math/vec3.hpp index 4b659c954..b36908f5f 100644 --- a/mediapipe/render/module/render_queue/math/vec3.hpp +++ b/mediapipe/render/module/render_queue/math/vec3.hpp @@ -1,6 +1,6 @@ // // vec3.h -// OLARender +// Opipe // // Created by Wang,Renzhu on 2018/11/20. // Copyright © 2018年 Wang,Renzhu. All rights reserved. @@ -9,7 +9,7 @@ #ifndef VEC3_H #define VEC3_H -namespace OLARender { +namespace Opipe { class Vec3 { diff --git a/mediapipe/render/module/render_queue/math/vec3.inl b/mediapipe/render/module/render_queue/math/vec3.inl index c00decc89..7f13895e2 100644 --- a/mediapipe/render/module/render_queue/math/vec3.inl +++ b/mediapipe/render/module/render_queue/math/vec3.inl @@ -9,7 +9,7 @@ #include "vec3.hpp" #include -namespace OLARender { +namespace Opipe { inline bool Vec3::is_zero() const { diff --git a/mediapipe/render/module/render_queue/math/vec4.cpp b/mediapipe/render/module/render_queue/math/vec4.cpp index 330df4dff..45e45615e 100644 --- a/mediapipe/render/module/render_queue/math/vec4.cpp +++ b/mediapipe/render/module/render_queue/math/vec4.cpp @@ -1,6 +1,6 @@ // // vec4.cpp -// OLARender +// Opipe // // Created by Wang,Renzhu on 2018/11/20. // Copyright © 2018年 Wang,Renzhu. All rights reserved. @@ -17,7 +17,7 @@ #endif #include -namespace OLARender { +namespace Opipe { Vec4::Vec4() : x(0.0f), y(0.0f), z(0.0f), w(0.0f) { diff --git a/mediapipe/render/module/render_queue/math/vec4.hpp b/mediapipe/render/module/render_queue/math/vec4.hpp index 7c7723821..64a4870eb 100644 --- a/mediapipe/render/module/render_queue/math/vec4.hpp +++ b/mediapipe/render/module/render_queue/math/vec4.hpp @@ -1,6 +1,6 @@ // // vec4.h -// OLARender +// Opipe // // Created by Wang,Renzhu on 2018/11/20. // Copyright © 2018年 Wang,Renzhu. All rights reserved. @@ -9,7 +9,7 @@ #ifndef VEC4_H #define VEC4_H -namespace OLARender { +namespace Opipe { class Vec4 { public: diff --git a/mediapipe/render/module/render_queue/math/vec4.inl b/mediapipe/render/module/render_queue/math/vec4.inl index 7af8f3da1..53e4f620e 100644 --- a/mediapipe/render/module/render_queue/math/vec4.inl +++ b/mediapipe/render/module/render_queue/math/vec4.inl @@ -8,7 +8,7 @@ #include "vec4.hpp" -namespace OLARender { +namespace Opipe { inline Vec4 Vec4::operator+(const Vec4& v) const { diff --git a/mediapipe/render/module/render_queue/util.h b/mediapipe/render/module/render_queue/util.h index 638401305..e77bbe380 100755 --- a/mediapipe/render/module/render_queue/util.h +++ b/mediapipe/render/module/render_queue/util.h @@ -12,7 +12,7 @@ NS_OLA_BEGIN std::string str_format(const char *fmt,...); void Log(const std::string& tag, const std::string& format, ...); -#define rotationSwapsSize(rotation) ((rotation) == OLARender::RotateLeft || (rotation) == OLARender::RotateRight || (rotation) == OLARender::RotateRightFlipVertical || (rotation) == OLARender::RotateRightFlipHorizontal) +#define rotationSwapsSize(rotation) ((rotation) == Opipe::RotateLeft || (rotation) == Opipe::RotateRight || (rotation) == Opipe::RotateRightFlipVertical || (rotation) == Opipe::RotateRightFlipHorizontal) NS_OLA_END