diff --git a/mediapipe/graphs/face_mesh/BUILD b/mediapipe/graphs/face_mesh/BUILD index 6926fda72..06aa7f32b 100644 --- a/mediapipe/graphs/face_mesh/BUILD +++ b/mediapipe/graphs/face_mesh/BUILD @@ -67,3 +67,10 @@ mediapipe_binary_graph( output_name = "face_mesh_mobile_gpu.binarypb", deps = [":mobile_calculators"], ) + +mediapipe_binary_graph( + name = "face_mesh_mobile_landmark_gpu_binary_graph", + graph = "face_mesh_mobile_landmark.pbtxt", + output_name = "face_mesh_mobile_landmark_gpu.binarypb", + deps = [":mobile_calculators"], +) diff --git a/mediapipe/graphs/face_mesh/face_mesh_mobile.pbtxt b/mediapipe/graphs/face_mesh/face_mesh_mobile.pbtxt index 045273b04..c50d377d1 100644 --- a/mediapipe/graphs/face_mesh/face_mesh_mobile.pbtxt +++ b/mediapipe/graphs/face_mesh/face_mesh_mobile.pbtxt @@ -1,5 +1,5 @@ # MediaPipe graph that performs face mesh with TensorFlow Lite on GPU. - +max_queue_size: 2 # GPU buffer. (GpuBuffer) input_stream: "input_video" diff --git a/mediapipe/graphs/face_mesh/face_mesh_mobile_landmark.pbtxt b/mediapipe/graphs/face_mesh/face_mesh_mobile_landmark.pbtxt new file mode 100644 index 000000000..ebf9cbd48 --- /dev/null +++ b/mediapipe/graphs/face_mesh/face_mesh_mobile_landmark.pbtxt @@ -0,0 +1,69 @@ +# MediaPipe graph that performs face mesh with TensorFlow Lite on GPU. + +# GPU buffer. (GpuBuffer) +input_stream: "input_video" + +# Max number of faces to detect/process. (int) +input_side_packet: "num_faces" + +# Output image with rendered results. (GpuBuffer) +output_stream: "output_video" +# Collection of detected/processed faces, each represented as a list of +# landmarks. (std::vector) +output_stream: "multi_face_landmarks" + +# output_stream: "face_detections" + +# Throttles the images flowing downstream for flow control. It passes through +# the very first incoming image unaltered, and waits for downstream nodes +# (calculators and subgraphs) in the graph to finish their tasks before it +# passes through another image. All images that come in while waiting are +# dropped, limiting the number of in-flight images in most part of the graph to +# 1. This prevents the downstream nodes from queuing up incoming images and data +# excessively, which leads to increased latency and memory usage, unwanted in +# real-time mobile applications. It also eliminates unnecessarily computation, +# e.g., the output produced by a node may get dropped downstream if the +# subsequent nodes are still busy processing previous inputs. +node { + calculator: "FlowLimiterCalculator" + input_stream: "input_video" + input_stream: "FINISHED:output_video" + input_stream_info: { + tag_index: "FINISHED" + back_edge: true + } + output_stream: "throttled_input_video" +} + +# Defines side packets for further use in the graph. +node { + calculator: "ConstantSidePacketCalculator" + output_side_packet: "PACKET:with_attention" + node_options: { + [type.googleapis.com/mediapipe.ConstantSidePacketCalculatorOptions]: { + packet { bool_value: true } + } + } +} + +# Subgraph that detects faces and corresponding landmarks. +node { + calculator: "FaceLandmarkFrontGpu" + input_stream: "IMAGE:throttled_input_video" + input_side_packet: "NUM_FACES:num_faces" + input_side_packet: "WITH_ATTENTION:with_attention" + output_stream: "LANDMARKS:multi_face_landmarks" + output_stream: "ROIS_FROM_LANDMARKS:face_rects_from_landmarks" + output_stream: "DETECTIONS:face_detections" + output_stream: "ROIS_FROM_DETECTIONS:face_rects_from_detections" +} + +# Subgraph that renders face-landmark annotation onto the input image. //画标记 用于调试 +node { + calculator: "FaceRendererGpu" + input_stream: "IMAGE:throttled_input_video" + input_stream: "LANDMARKS:multi_face_landmarks" + input_stream: "NORM_RECTS:face_rects_from_landmarks" + input_stream: "DETECTIONS:face_detections" + output_stream: "IMAGE:output_video" +} diff --git a/mediapipe/render/core/BUILD b/mediapipe/render/core/BUILD index 4cb2ccb45..fdd557111 100644 --- a/mediapipe/render/core/BUILD +++ b/mediapipe/render/core/BUILD @@ -63,6 +63,13 @@ cc_library( "//mediapipe:apple": [], "//conditions:default": [], }), + copts = select({ + "//mediapipe:apple": [ + "-x objective-c++", + "-fobjc-arc", # enable reference-counting + ], + "//conditions:default": [], + }), ) cc_library( diff --git a/mediapipe/render/core/Filter.cpp b/mediapipe/render/core/Filter.cpp index 2d571c074..7ae5eb2d4 100755 --- a/mediapipe/render/core/Filter.cpp +++ b/mediapipe/render/core/Filter.cpp @@ -341,8 +341,8 @@ bool Filter::proceed(float frameTime, bool bUpdateTargets/* = true*/) { CHECK_GL(glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, 0)); filter_externDraw(); _framebuffer->inactive(); - Log("Filter", "%s渲染完毕,准备开始Unlock Framebuffer:%s", typeid(*this).name(), - _framebuffer->_hashCode.c_str()); +// Log("Filter", "%s渲染完毕,准备开始Unlock Framebuffer:%s", typeid(*this).name(), +// _framebuffer->_hashCode.c_str()); #if DEBUG _framebuffer->unlock(typeid(*this).name()); #else @@ -502,6 +502,43 @@ void Filter::update(float frameTime) { _framebuffer = 0; } +bool Filter::getProperty(const std::string& name, std::vector& retValue) { + Property* property = _getProperty(name); + if (!property) return false; + retValue = ((Vec2ArrayProperty*)property)->value; + return true; +} + +bool Filter::registerProperty(const std::string& name, + std::vector defaultValue, + const std::string& comment/* = ""*/, + std::function&)> setCallback/* = 0*/) { + if (hasProperty(name)) return false; + Vec2ArrayProperty property; + property.type = "vec2Array"; + property.value = defaultValue; + property.comment = comment; + property.setCallback = setCallback; + _vec2ArrayProperties[name] = property; + return true; +} + +bool Filter::setProperty(const std::string& name, std::vector value) { + Property* rawProperty = _getProperty(name); + if (!rawProperty) { + Log("WARNING", "Filter::setProperty invalid property %s", name.c_str()); + return false; + } else if (rawProperty->type != "vec2Array") { + Log("WARNING", "Filter::setProperty The property type is expected to be %s", rawProperty->type.c_str()); + return false; + } + Vec2ArrayProperty* property = ((Vec2ArrayProperty *)rawProperty); + property->value = value; + if (property->setCallback) + property->setCallback(value); + return true; +} + bool Filter::registerProperty(const std::string& name, int defaultValue, const std::string& comment/* = ""*/, std::function setCallback/* = 0*/) { if (hasProperty(name)) return false; IntProperty property; diff --git a/mediapipe/render/core/Filter.hpp b/mediapipe/render/core/Filter.hpp index 26303337f..56fdc15d8 100644 --- a/mediapipe/render/core/Filter.hpp +++ b/mediapipe/render/core/Filter.hpp @@ -122,9 +122,22 @@ public: virtual bool registerProperty(const std::string& name, int defaultValue, const std::string& comment = "", std::function setCallback = 0); virtual bool registerProperty(const std::string& name, float defaultValue, const std::string& comment = "", std::function setCallback = 0); virtual bool registerProperty(const std::string& name, const std::string& defaultValue, const std::string& comment = "", std::function setCallback = 0); + bool registerProperty(const std::string& name, + std::vector defaultValue, + const std::string& comment = "", + std::function&)> setCallback = 0); + + bool registerProperty(const std::string& name, + Vec2 defaultValue, + const std::string& comment = "", + std::function setCallback = 0); + bool setProperty(const std::string& name, Vec2 value); + bool setProperty(const std::string& name, int value); bool setProperty(const std::string& name, float value); bool setProperty(const std::string& name, std::string value); + bool setProperty(const std::string& name, std::vector retValue); + bool getProperty(const std::string& name, std::vector& retValue); bool getProperty(const std::string& name, int& retValue); bool getProperty(const std::string& name, float& retValue); bool getProperty(const std::string& name, std::string& retValue); @@ -217,14 +230,33 @@ protected: Filter(Context *context); std::string _getVertexShaderString() const; const GLfloat* _getTexureCoordinate(const RotationMode& rotationMode) const; - + // properties struct Property { std::string type; std::string comment; }; + + struct Vec2ArrayProperty : Property { + std::vector value; + std::function&)> setCallback; + }; + std::map _vec2ArrayProperties; + + struct Vec2Property : Property { + Vec2 value; + std::function setCallback; + }; + virtual Property* _getProperty(const std::string& name); + std::map _vec2Properties; + + struct Vec3Property : Property { + Vec3 value; + std::function setCallback; + }; + struct IntProperty : Property { int value; std::function setCallback; diff --git a/mediapipe/render/core/Framebuffer.cpp b/mediapipe/render/core/Framebuffer.cpp index 8ccda0519..96c434c4f 100755 --- a/mediapipe/render/core/Framebuffer.cpp +++ b/mediapipe/render/core/Framebuffer.cpp @@ -136,16 +136,16 @@ namespace Opipe { void Framebuffer::lock(std::string lockKey) { if (lockKey == "Unknow") { - Log("Framebuffer LOCK", "未知锁 【hasCode :%s】", _hashCode.c_str()); +// Log("Framebuffer LOCK", "未知锁 【hasCode :%s】", _hashCode.c_str()); } else if (lockKey != _lockKey) { - Log("Framebuffer LOCK", "Key变更:%s 【hasCode :%s】", lockKey.c_str(), _hashCode.c_str()); +// Log("Framebuffer LOCK", "Key变更:%s 【hasCode :%s】", lockKey.c_str(), _hashCode.c_str()); } _lockKey = lockKey; _framebufferRetainCount++; - Log("Framebuffer LOCK", "lock retainCount == :%d lockKey:%s 【framebufferCode:%s】", - _framebufferRetainCount, - lockKey.c_str(), _hashCode.c_str()); +// Log("Framebuffer LOCK", "lock retainCount == :%d lockKey:%s 【framebufferCode:%s】", +// _framebufferRetainCount, +// lockKey.c_str(), _hashCode.c_str()); } void Framebuffer::unlock(std::string lockKey) { @@ -156,16 +156,16 @@ namespace Opipe { } if (lockKey != _lockKey) { - Log("Framebuffer UNLOCK", "可能是多次Lock后Unlock retainCount:%d lockKey:%s 【framebufferCode:%s】", - _framebufferRetainCount, - lockKey.c_str(), - _hashCode.c_str()); +// Log("Framebuffer UNLOCK", "可能是多次Lock后Unlock retainCount:%d lockKey:%s 【framebufferCode:%s】", +// _framebufferRetainCount, +// lockKey.c_str(), +// _hashCode.c_str()); } - Log("Framebuffer UNLOCK", "unlock retainCount == :%d lockKey:%s 【framebufferCode:%s】" - , _framebufferRetainCount, - lockKey.c_str(), - _hashCode.c_str()); +// Log("Framebuffer UNLOCK", "unlock retainCount == :%d lockKey:%s 【framebufferCode:%s】" +// , _framebufferRetainCount, +// lockKey.c_str(), +// _hashCode.c_str()); } void Framebuffer::resetRetainCount() { diff --git a/mediapipe/render/core/FramebufferCache.cpp b/mediapipe/render/core/FramebufferCache.cpp index 6ff39de36..98892add4 100755 --- a/mediapipe/render/core/FramebufferCache.cpp +++ b/mediapipe/render/core/FramebufferCache.cpp @@ -88,16 +88,16 @@ Framebuffer* FramebufferCache::fetchFramebuffer(Context *context, forceCleanFramebuffer(framebuffer); framebuffer = 0; } else if (framebuffer->framebufferRetainCount() == 0 && !framebuffer->isDealloc) { - Log("Framebuffer 【命中缓存】", "hashcode:%s count:%d", - framebufferHashCodeKey.first.c_str(), - framebuffer->framebufferRetainCount()); +// Log("Framebuffer 【命中缓存】", "hashcode:%s count:%d", +// framebufferHashCodeKey.first.c_str(), +// framebuffer->framebufferRetainCount()); return framebuffer; } } } - Log("Framebuffer 所有缓存【未命中】", "hashcode:%s count:%d", - lookupHash.c_str(), - matchFramebuffersHashCode.size()); +// Log("Framebuffer 所有缓存【未命中】", "hashcode:%s count:%d", +// lookupHash.c_str(), +// matchFramebuffersHashCode.size()); // 如果都被占用了 或者找不到对应的Framebuffer 则需要创建一个新的 if (useTextureCache) { diff --git a/mediapipe/render/core/GPUImageUtil.cpp b/mediapipe/render/core/GPUImageUtil.cpp index 077c59340..b0363ecd0 100755 --- a/mediapipe/render/core/GPUImageUtil.cpp +++ b/mediapipe/render/core/GPUImageUtil.cpp @@ -15,10 +15,12 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - +#if defined(__APPLE__) +#import +#endif #include "GPUImageUtil.h" - +#define openLog 1 namespace Opipe { @@ -39,7 +41,19 @@ namespace Opipe { } void Log(const std::string &tag, const std::string &format, ...) { - +#if openLog + char buffer[10240]; + va_list args; + va_start(args, format); + vsprintf(buffer, format.c_str(), args); + va_end(args); +#if defined(__APPLE__) + NSLog(@"%s: %s", tag.c_str(), buffer); +#else + __android_log_print(ANDROID_LOG_INFO, tag.c_str(), "%s", buffer); + +#endif +#endif } /** diff --git a/mediapipe/render/ios/Camera/OlaMTLCameraRenderView.h b/mediapipe/render/ios/Camera/OlaMTLCameraRenderView.h index 576085a6a..bf494ef18 100644 --- a/mediapipe/render/ios/Camera/OlaMTLCameraRenderView.h +++ b/mediapipe/render/ios/Camera/OlaMTLCameraRenderView.h @@ -20,7 +20,7 @@ /// @param texture texture description /// @param onScreenTexture 上屏纹理 /// @param frameTime 帧时间 -- (IOSurfaceID)bgraCameraTextureReady:(OlaShareTexture *)texture +- (void)bgraCameraTextureReady:(OlaShareTexture *)texture onScreenTexture:(OlaShareTexture *)onScreenTexture frameTime:(NSTimeInterval)frameTime; @@ -30,7 +30,7 @@ /// @param frameTime frameTime description /// @param targetTexture targetTexture description /// @param buffer MTL的CommandBuffer -- (void)externalRender:(NSTimeInterval)frameTime +- (IOSurfaceID)externalRender:(NSTimeInterval)frameTime targetTexture:(OlaShareTexture *)targetTexture commandBuffer:(id)buffer; @@ -71,6 +71,8 @@ /// @param sampleBuffer 相机采集流 - (void)cameraSampleBufferArrive:(CMSampleBufferRef)sampleBuffer; +- (void)renderPixelbuffer:(CVPixelBufferRef)pixelbuffer; + - (void)addRender:(OlaCameraRender *)render; diff --git a/mediapipe/render/ios/Camera/OlaMTLCameraRenderView.mm b/mediapipe/render/ios/Camera/OlaMTLCameraRenderView.mm index a34988bc9..a05ba6cdb 100644 --- a/mediapipe/render/ios/Camera/OlaMTLCameraRenderView.mm +++ b/mediapipe/render/ios/Camera/OlaMTLCameraRenderView.mm @@ -231,21 +231,23 @@ NS_INLINE size_t QAAlignSize(size_t size) if (strongSelf.cameraDelegate && !strongSelf.isPaused) { if (@available(iOS 11.0, *)) { glFlush(); + [EAGLContext setCurrentContext:strongSelf.openGLContext]; + [strongSelf.cameraDelegate draw:strongSelf.frameTime]; - [strongSelf.cameraDelegate externalRender:strongSelf.frameTime - targetTexture:strongSelf.shareTexture - commandBuffer:commandBuffer]; - [EAGLContext setCurrentContext:self.openGLContext]; - IOSurfaceID surfaceId = [strongSelf.cameraDelegate bgraCameraTextureReady:strongSelf.cameraTexture + [strongSelf.cameraDelegate bgraCameraTextureReady:strongSelf.cameraTexture onScreenTexture:strongSelf.shareTexture frameTime:strongSelf.frameTime * 1000]; + + IOSurfaceID surfaceId = [strongSelf.cameraDelegate externalRender:strongSelf.frameTime + targetTexture:strongSelf.cameraTexture + commandBuffer:commandBuffer]; if (surfaceId != -1) { //这里渲染surfaceId IOSurfaceRef ioSurface = IOSurfaceLookup(surfaceId); - IOSurfaceLock(ioSurface, kIOSurfaceLockReadOnly, nil); + if (ioSurface) { - if (self.lastIOSurfaceID != surfaceId || self.ioSurfaceTexture == nil) { + if (strongSelf.lastIOSurfaceID != surfaceId || strongSelf.ioSurfaceTexture == nil) { id texture; MTLTextureDescriptor *textureDescriptor = [MTLTextureDescriptor texture2DDescriptorWithPixelFormat:MTLPixelFormatBGRA8Unorm @@ -254,18 +256,16 @@ NS_INLINE size_t QAAlignSize(size_t size) mipmapped:NO]; textureDescriptor.storageMode = MTLStorageModeShared; textureDescriptor.usage = MTLTextureUsageRenderTarget | MTLTextureUsageShaderRead; - texture = [self.device newTextureWithDescriptor:textureDescriptor iosurface:ioSurface plane:0]; - self.ioSurfaceTexture = texture; + texture = [strongSelf.device newTextureWithDescriptor:textureDescriptor iosurface:ioSurface plane:0]; + strongSelf.ioSurfaceTexture = texture; textureDescriptor = nil; } - IOSurfaceUnlock(ioSurface, kIOSurfaceLockReadOnly, nil); - CFRelease(ioSurface); - - self.lastIOSurfaceID = surfaceId; - if (self.ioSurfaceTexture) { + strongSelf.lastIOSurfaceID = surfaceId; + if (strongSelf.ioSurfaceTexture) { + IOSurfaceLock(ioSurface, kIOSurfaceLockReadOnly, nil); [strongSelf.mtlRender renderToTexture:drawable.texture - from:self.ioSurfaceTexture + from:strongSelf.ioSurfaceTexture commandBuffer:commandBuffer textureCoordinate:strongSelf.mtlRender.noRotationBuffer]; if (drawable) { @@ -273,6 +273,8 @@ NS_INLINE size_t QAAlignSize(size_t size) [commandBuffer addCompletedHandler:renderCompleted]; [commandBuffer commit]; } + IOSurfaceUnlock(ioSurface, kIOSurfaceLockReadOnly, nil); + CFRelease(ioSurface); return; } @@ -299,6 +301,37 @@ NS_INLINE size_t QAAlignSize(size_t size) } +- (void)renderPixelbuffer:(CVPixelBufferRef)pixelbuffer +{ + if (self.isPaused) { + return; + } + + if (dispatch_semaphore_wait(self.cameraFrameRenderingSemaphore, DISPATCH_TIME_NOW) != 0) + { + return; + } + + dispatch_semaphore_t block_camera_sema = self.cameraFrameRenderingSemaphore; + __strong OlaMTLCameraRenderView *weakSelf = self; + void (^renderCompleted)(id buffer) = ^(id buffer) + { + dispatch_semaphore_signal(block_camera_sema); + }; + + CFRetain(pixelbuffer); + dispatch_async(self.displayRenderQueue, ^{ + if (weakSelf == nil) { + CFRelease(pixelbuffer); + return; + } + __strong OlaMTLCameraRenderView *strongSelf = weakSelf; + [strongSelf.mtlRender renderToCameraTextureWithPixelBuffer:pixelbuffer completedHandler:renderCompleted]; + + CFRelease(pixelbuffer); + }); +} + - (void)cameraSampleBufferArrive:(CMSampleBufferRef)sampleBuffer { if (self.isPaused) { diff --git a/mediapipe/render/module/beauty/BUILD b/mediapipe/render/module/beauty/BUILD index 9ea6253f6..134bc4b44 100644 --- a/mediapipe/render/module/beauty/BUILD +++ b/mediapipe/render/module/beauty/BUILD @@ -63,7 +63,7 @@ cc_library( copts = select({ "//mediapipe:apple": [ "-x objective-c++", - "-fobjc-arc", # enable reference-counting + # "-fobjc-arc", # enable reference-counting ], "//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 50af1c235..6643900a9 100644 --- a/mediapipe/render/module/beauty/face_mesh_beauty_render.cc +++ b/mediapipe/render/module/beauty/face_mesh_beauty_render.cc @@ -29,8 +29,8 @@ namespace Opipe FaceMeshBeautyRender::~FaceMeshBeautyRender() { - _olaBeautyFilter->removeAllTargets(); + if (_olaBeautyFilter) { _olaBeautyFilter->release(); @@ -122,6 +122,13 @@ namespace Opipe return outputTexture; } + void FaceMeshBeautyRender::setFacePoints(std::vector facePoints) { + if (_olaBeautyFilter) { + _olaBeautyFilter->setProperty("face", facePoints); + + } + } + float FaceMeshBeautyRender::getSmoothing() { return _smoothing; @@ -137,7 +144,7 @@ namespace Opipe _smoothing = smoothing; if (_olaBeautyFilter) { - _olaBeautyFilter->setSmoothing(smoothing); + _olaBeautyFilter->setProperty("skin", smoothing); } } @@ -146,8 +153,23 @@ namespace Opipe _whitening = whitening; if (_olaBeautyFilter) { - _olaBeautyFilter->setWhitening(whitening); + _olaBeautyFilter->setProperty("whiten", whitening); } } + void FaceMeshBeautyRender::setNoseFactor(float noseFactor) { + _noseFactor = noseFactor; + if (_olaBeautyFilter) { + _olaBeautyFilter->setProperty("nose", noseFactor); + } + } + + void FaceMeshBeautyRender::setFaceSlim(float slimFactor) { + _faceFactor = slimFactor; + if (_olaBeautyFilter) { + _olaBeautyFilter->setProperty("slim", slimFactor); + } + } + + } diff --git a/mediapipe/render/module/beauty/face_mesh_beauty_render.h b/mediapipe/render/module/beauty/face_mesh_beauty_render.h index 95713b04e..0e780ffbe 100644 --- a/mediapipe/render/module/beauty/face_mesh_beauty_render.h +++ b/mediapipe/render/module/beauty/face_mesh_beauty_render.h @@ -4,7 +4,7 @@ #include "mediapipe/render/module/beauty/filters/OlaBeautyFilter.hpp" #include "mediapipe/render/core/OlaShareTextureFilter.hpp" #include "mediapipe/render/core/SourceImage.hpp" - +#include "mediapipe/render/core/math/vec2.hpp" namespace Opipe { class FaceMeshBeautyRender { public: @@ -25,7 +25,19 @@ namespace Opipe { /// 美白 float getWhitening(); + float getEye() { + return _eyeFactor; + } + + float getFace() { + return _faceFactor; + } + + float getNose() { + return _noseFactor; + } + /// 磨皮 /// @param smoothing 磨皮 0.0 - 1.0 void setSmoothing(float smoothing); @@ -34,12 +46,29 @@ namespace Opipe { /// 美白 /// @param whitening 美白 0.0 - 1.0 void setWhitening(float whitening); + + /// 设置人脸点 mediapipe版 + void setFacePoints(std::vector facePoints); + + // 大眼 + void setEye(float eyeFactor); + + // 瘦脸 + void setFaceSlim(float slimFactor); + + // 瘦鼻 + void setNoseFactor(float noseFactor); + + private: OlaBeautyFilter *_olaBeautyFilter = nullptr; OlaShareTextureFilter *_outputFilter = nullptr; Framebuffer *_inputFramebuffer = nullptr; float _smoothing = 0.0; float _whitening = 0.0; + float _noseFactor = 0.0; + float _faceFactor = 0.0; + float _eyeFactor = 0.0; bool _isRendering = false; Context *_context = nullptr; SourceImage *_lutImage = nullptr; diff --git a/mediapipe/render/module/beauty/face_mesh_module_imp.cc b/mediapipe/render/module/beauty/face_mesh_module_imp.cc index d3e8097ac..fdeb36583 100644 --- a/mediapipe/render/module/beauty/face_mesh_module_imp.cc +++ b/mediapipe/render/module/beauty/face_mesh_module_imp.cc @@ -1,5 +1,10 @@ #include "face_mesh_module_imp.h" #include "mediapipe/render/core/Context.hpp" +#include "mediapipe/render/core/math/vec2.hpp" +#if TestTemplateFace +#include "mediapipe/render/core/CVFramebuffer.hpp" +#import +#endif static const char* kNumFacesInputSidePacket = "num_faces"; static const char* kLandmarksOutputStream = "multi_face_landmarks"; @@ -18,45 +23,43 @@ namespace Opipe } #if defined(__APPLE__) void FaceMeshCallFrameDelegate::outputPixelbuffer(OlaGraph *graph, CVPixelBufferRef pixelbuffer, - const std::string &streamName, int64_t timstamp) + const std::string &streamName, int64_t timestamp) { - + _imp->currentDispatch()->runSync([&] { + IOSurfaceRef surface = CVPixelBufferGetIOSurface(pixelbuffer); + IOSurfaceID surfaceId = IOSurfaceGetID(surface); + Log("Opipe", "streamName %s timeStamp:%ld iosurfaceid:%d", streamName.c_str(), timestamp, surfaceId); + }); + } #endif void FaceMeshCallFrameDelegate::outputPacket(OlaGraph *graph, const mediapipe::Packet &packet, const std::string &streamName) { -#if defined(__APPLE__) - NSLog(@"streamName:%@ ts:%lld 是否有人脸:%@", [NSString stringWithUTF8String:streamName.c_str()], - packet.Timestamp().Value(), @(_hasFace)); -#endif + if (_imp == nullptr) { return; } - - - if (streamName == kLandmarksOutputStream) { - _last_landmark_ts = packet.Timestamp().Value(); - - if (_last_video_ts == _last_landmark_ts) { - //有人脸 + _imp->currentDispatch()->runSync([&] { + if (streamName == kLandmarksOutputStream) { + _last_landmark_ts = packet.Timestamp().Value(); _hasFace = true; const auto& multi_face_landmarks = packet.Get>(); _lastLandmark = multi_face_landmarks[0]; } - } - - if (_last_video_ts != _last_landmark_ts) { - _hasFace = false; - } - - _last_video_ts = packet.Timestamp().Value(); - - if (_hasFace) { + Log("FaceMeshModule", "landmarkts:%ld", _last_landmark_ts); - _imp->setLandmark(_lastLandmark); - } else { - _imp->setLandmark(_emptyLandmark); - } + if (packet.Timestamp().Value() != _last_landmark_ts) { + _hasFace = false; + _last_landmark_ts = 0; //输出过一次的时间戳 不再输出 + } + + if (_hasFace) { + + _imp->setLandmark(_lastLandmark, packet.Timestamp().Value()); + } else { + _imp->setLandmark(_emptyLandmark, packet.Timestamp().Value()); + } + }, Opipe::Context::IOContext); } void FaceMeshCallFrameDelegate::outputPacket(OlaGraph *graph, const mediapipe::Packet &packet, @@ -163,27 +166,34 @@ namespace Opipe _dispatch->runSync([&] { if (_render == nullptr) { _render = new FaceMeshBeautyRender(_context); +#if TestTemplateFace + UIImage *image = [UIImage imageNamed:@"templateFace"]; + + _templateFace = SourceImage::create(_context, image); + +#endif + } }); } + return true; } - void FaceMeshModuleIMP::setLandmark(NormalizedLandmarkList landmark) + void FaceMeshModuleIMP::setLandmark(NormalizedLandmarkList landmark, int64_t timeStamp) { + _lastLandmark = std::move(landmark); -// if (_lastLandmark.landmark_size() == 0) { -//#if defined(__APPLE__) -// NSLog(@"没有人脸"); -//#endif -// } -// for (int i = 0; i < _lastLandmark.landmark_size(); ++i) { -//#if defined(__APPLE__) -// NSLog(@"######## Set Landmark[%d]: (%f, %f, %f)", i, _lastLandmark.landmark(i).x(), -// _lastLandmark.landmark(i).y(), _lastLandmark.landmark(i).z()); -//#endif -// } + + if (_lastLandmark.landmark_size() == 0) { + Log("FaceMeshModule", "没有检测到人脸"); + + } else { +// _graph->cosumeFrame(); +// _graph->closeAllInputStreams(); + Log("FaceMeshModule", "检测到人脸输出"); + } } void FaceMeshModuleIMP::startModule() @@ -192,7 +202,8 @@ namespace Opipe { return; } - _isInit = _graph->start(); + _isInit = _graph->start(); + _graph->setUseVideoOutput(false); } void FaceMeshModuleIMP::stopModule() @@ -216,11 +227,24 @@ namespace Opipe return; } Timestamp ts(timeStamp * 1000); + + +#if TestTemplateFace + auto *framebuffer = dynamic_cast(_templateFace->getFramebuffer()); + CVPixelBufferRef renderTarget = framebuffer->renderTarget; + framebuffer->lockAddress(); + _graph->sendPixelBuffer(renderTarget, "input_video", + MPPPacketTypePixelBuffer, + ts); + framebuffer->unlockAddress(); +#else CVPixelBufferLockBaseAddress(pixelbuffer, 0); _graph->sendPixelBuffer(pixelbuffer, "input_video", MPPPacketTypePixelBuffer, ts); CVPixelBufferUnlockBaseAddress(pixelbuffer, 0); +#endif + } #endif @@ -254,18 +278,21 @@ namespace Opipe _dispatch->runSync([&] { -// GLsync sync; -// _dispatch->runAsync([&] { -// _render->renderTexture(inputTexture); -// sync = glFenceSync(GL_SYNC_GPU_COMMANDS_COMPLETE, 0); -// glFlush(); -// }); -// glWaitSync(sync, 0, GL_TIMEOUT_IGNORED); -// glDeleteSync(sync); + _render->renderTexture(inputTexture); }); textureInfo = _render->outputRenderTexture(inputTexture); + std::vector facePoints; + if (_lastLandmark.landmark_size() > 0) { + Log("FaceMeshModule", "检测到人脸输出"); + for (int i = 0; i < _lastLandmark.landmark_size(); i++) { + facePoints.emplace_back( _lastLandmark.landmark(i).x(), _lastLandmark.landmark(i).y()); + } + Log("FaceMeshModule", "检测到人脸输完毕"); + } else { + _render->setFacePoints(facePoints); + } return textureInfo; } diff --git a/mediapipe/render/module/beauty/face_mesh_module_imp.h b/mediapipe/render/module/beauty/face_mesh_module_imp.h index edc6206ed..51d3cdbf8 100644 --- a/mediapipe/render/module/beauty/face_mesh_module_imp.h +++ b/mediapipe/render/module/beauty/face_mesh_module_imp.h @@ -8,6 +8,12 @@ #include "face_mesh_module.h" #include "face_mesh_beauty_render.h" +#define TestTemplateFace 0 +#if TestTemplateFace +#include "mediapipe/render/core/SourceImage.hpp" +#endif + + namespace Opipe { class FaceMeshModuleIMP; @@ -32,7 +38,6 @@ namespace Opipe private: int64_t _last_landmark_ts = 0; - int64_t _last_video_ts = 0; bool _hasFace = false; NormalizedLandmarkList _lastLandmark; NormalizedLandmarkList _emptyLandmark; @@ -79,7 +84,7 @@ namespace Opipe virtual TextureInfo renderTexture(TextureInfo inputTexture) override; - virtual void setLandmark(NormalizedLandmarkList landmark); + virtual void setLandmark(NormalizedLandmarkList landmark, int64_t timestamp); /// 磨皮 float getSmoothing() override { @@ -104,6 +109,10 @@ namespace Opipe void setWhitening(float whitening) { _render->setWhitening(whitening); } + + OpipeDispatch* currentDispatch() { + return _dispatch.get(); + } private: std::unique_ptr _dispatch; @@ -114,6 +123,10 @@ namespace Opipe std::shared_ptr _delegate; FaceMeshBeautyRender *_render = nullptr; OlaContext *_olaContext = nullptr; + +#if TestTemplateFace + SourceImage *_templateFace = nullptr; +#endif }; } #endif diff --git a/mediapipe/render/module/beauty/filters/BUILD b/mediapipe/render/module/beauty/filters/BUILD index ea5e75a2f..b85d63373 100644 --- a/mediapipe/render/module/beauty/filters/BUILD +++ b/mediapipe/render/module/beauty/filters/BUILD @@ -34,7 +34,7 @@ cc_library( copts = select({ "//mediapipe:apple": [ "-x objective-c++", - "-fobjc-arc", # enable reference-counting + # "-fobjc-arc", # enable reference-counting ], "//conditions:default": ["-std=c++17"], }), diff --git a/mediapipe/render/module/beauty/filters/FaceDistortionFilter.cpp b/mediapipe/render/module/beauty/filters/FaceDistortionFilter.cpp index 0acf3de06..39c318db7 100644 --- a/mediapipe/render/module/beauty/filters/FaceDistortionFilter.cpp +++ b/mediapipe/render/module/beauty/filters/FaceDistortionFilter.cpp @@ -18,6 +18,7 @@ namespace Opipe uniform int count; uniform float eye; uniform float slim; + uniform float nose; uniform int debug; void main() { vec2 uv = texCoord.xy; @@ -58,6 +59,16 @@ namespace Opipe uv = vec2(textureCoordinateToUse.x - (delta * directionX), textureCoordinateToUse.y - (delta * directionY)); } + else if (types[i] == 3) + { + float dist = 1.0 - d; + float delta = scale[i] * dist * nose; + float deltaScale = smoothstep(u_min[i], u_max[i], dist); + float directionX = cos(angle[i]) * deltaScale; + float directionY = sin(angle[i]) * deltaScale / (3.0 / 4.0 * aspectRatio); + uv = vec2(textureCoordinateToUse.x - (delta * directionX), + textureCoordinateToUse.y - (delta * directionY)); + } } } vTexCoord = uv; @@ -228,12 +239,12 @@ namespace Opipe _filterProgram->setUniformValue("eye", _eye); _filterProgram->setUniformValue("slim", _slim); - + _filterProgram->setUniformValue("nose", _nose); //左眼放大 { - Vector2 point1 = Vector2(_facePoints[75].x, _facePoints[75].y); - Vector2 point2 = Vector2(_facePoints[79].x, _facePoints[79].y); - Vector2 point3 = Vector2(_facePoints[65].x, _facePoints[65].y); + Vector2 point1 = Vector2(_facePoints[362].x, _facePoints[362].y); + Vector2 point2 = Vector2(_facePoints[263].x, _facePoints[263].y); + Vector2 point3 = Vector2(_facePoints[417].x, _facePoints[417].y); Vector2 center = point1.getCenter(point2); float distance = center.distance(point3); addPoint(center, distance / 2, distance / 2, 0.3, 1, 0.0f, 0.0f, 1); @@ -241,9 +252,9 @@ namespace Opipe //右眼放大 { - Vector2 point1 = Vector2(_facePoints[66].x, _facePoints[66].y); - Vector2 point2 = Vector2(_facePoints[70].x, _facePoints[70].y); - Vector2 point3 = Vector2(_facePoints[55].x, _facePoints[55].y); + Vector2 point1 = Vector2(_facePoints[33].x, _facePoints[33].y); + Vector2 point2 = Vector2(_facePoints[133].x, _facePoints[133].y); + Vector2 point3 = Vector2(_facePoints[193].x, _facePoints[193].y); Vector2 center = point1.getCenter(point2); float distance = center.distance(point3); addPoint(center, distance / 2, distance / 2, 0.3, 1, 0.0f, 0.0f, 1); @@ -251,10 +262,10 @@ namespace Opipe //瘦左脸 { - Vector2 point1 = Vector2(_facePoints[11].x, _facePoints[11].y); - Vector2 point2 = Vector2(_facePoints[60].x, _facePoints[60].y); - Vector2 point3 = Vector2(_facePoints[4].x, _facePoints[4].y); - Vector2 point4 = Vector2(_facePoints[16].x, _facePoints[16].y); + Vector2 point1 = Vector2(_facePoints[136].x, _facePoints[136].y); + Vector2 point2 = Vector2(_facePoints[19].x, _facePoints[19].y); + Vector2 point3 = Vector2(_facePoints[234].x, _facePoints[234].y); + Vector2 point4 = Vector2(_facePoints[152].x, _facePoints[152].y); float angle = getRadius(point2, point1); addPoint(point1, point1.distance(point3), point1.distance(point4), 0.02, 2, angle, @@ -263,10 +274,10 @@ namespace Opipe } //瘦右脸 { - Vector2 point1 = Vector2(_facePoints[21].x, _facePoints[21].y); - Vector2 point2 = Vector2(_facePoints[60].x, _facePoints[60].y); - Vector2 point3 = Vector2(_facePoints[28].x, _facePoints[28].y); - Vector2 point4 = Vector2(_facePoints[16].x, _facePoints[16].y); + Vector2 point1 = Vector2(_facePoints[379].x, _facePoints[379].y); + Vector2 point2 = Vector2(_facePoints[19].x, _facePoints[19].y); + Vector2 point3 = Vector2(_facePoints[454].x, _facePoints[454].y); + Vector2 point4 = Vector2(_facePoints[152].x, _facePoints[152].y); float angle = getRadius(point2, point1); addPoint(point1, point1.distance(point3), point1.distance(point4), 0.02, 2, angle, diff --git a/mediapipe/render/module/beauty/filters/FaceDistortionFilter.hpp b/mediapipe/render/module/beauty/filters/FaceDistortionFilter.hpp index abff580f7..81b8ce201 100644 --- a/mediapipe/render/module/beauty/filters/FaceDistortionFilter.hpp +++ b/mediapipe/render/module/beauty/filters/FaceDistortionFilter.hpp @@ -19,15 +19,32 @@ namespace Opipe virtual bool proceed(float frameTime = 0.0, bool bUpdateTargets = true) override; public: + float eye() { + return _eye; + } + + float slim() { + return _slim; + } + + float nose() { + return _nose; + } + void setEye(float eye) { _eye = eye; - }; + } void setSlim(float slim) { _slim = slim; - }; + } + + void setNose(float nose) + { + _nose = nose; + } void setFacePoints(std::vector facePoints) { @@ -62,10 +79,11 @@ namespace Opipe private: float _eye = 0.0; float _slim = 0.0; + float _nose = 0.0; std::vector _facePoints; //暂时支持单个人脸 GLuint vao = -1; GLuint eao = -1; }; } -#endif \ No newline at end of file +#endif diff --git a/mediapipe/render/module/beauty/filters/OlaBeautyFilter.cpp b/mediapipe/render/module/beauty/filters/OlaBeautyFilter.cpp index 2aea3ed2f..dc6d9d8af 100644 --- a/mediapipe/render/module/beauty/filters/OlaBeautyFilter.cpp +++ b/mediapipe/render/module/beauty/filters/OlaBeautyFilter.cpp @@ -1,4 +1,5 @@ #include "OlaBeautyFilter.hpp" +#include "mediapipe/render/core/math/vec2.hpp" namespace Opipe { OlaBeautyFilter::OlaBeautyFilter(Context *context) : FilterGroup(context) @@ -67,7 +68,7 @@ namespace Opipe { _lutFilter = LUTFilter::create(context); _unSharpMaskFilter = UnSharpMaskFilter::create(context); _unSharpMaskFilter->addTarget(_lutFilter, 0); - + _faceDistortFilter = FaceDistortionFilter::create(context); _bilateralAdjustFilter = BilateralAdjustFilter::create(context); addFilter(_bilateralAdjustFilter); @@ -75,12 +76,7 @@ namespace Opipe { _lookUpGroupFilter->addFilter(_unSharpMaskFilter); _alphaBlendFilter = AlphaBlendFilter::create(context); -// addFilter(_lookUpGroupFilter); -// addFilter(_lutFilter); - - -// setTerminalFilter(_lutFilter); - + _bilateralFilter = BilateralFilter::create(context); addFilter(_bilateralFilter); @@ -88,9 +84,8 @@ namespace Opipe { _bilateralFilter->addTarget(_bilateralAdjustFilter, 1)->addTarget(_alphaBlendFilter, 0); - _alphaBlendFilter->setMix(0.0); + _alphaBlendFilter->setMix(0.8); - setTerminalFilter(_alphaBlendFilter); _bilateralAdjustFilter->setOpacityLimit(0.6); _bilateralFilter->setDistanceNormalizationFactor(2.746); @@ -99,45 +94,46 @@ namespace Opipe { _unSharpMaskFilter->setBlurRadiusInPixel(2.0f, false); _unSharpMaskFilter->setIntensity(1.365); -// _bilateralFilter = BilateralFilter::create(context); -// addFilter(_bilateralFilter); -// -// _bilateralAdjustFilter = BilateralAdjustFilter::create(context); -// addFilter(_bilateralAdjustFilter); -// -// _unSharpMaskFilter = UnSharpMaskFilter::create(context); -// -// _lutFilter = LUTFilter::create(context); -// _unSharpMaskFilter->addTarget(_lutFilter, 0); -// -// _lookUpGroupFilter = FilterGroup::create(context); -// _lookUpGroupFilter->addFilter(_unSharpMaskFilter); -// -// _alphaBlendFilter = AlphaBlendFilter::create(context); -// _faceDistortFilter = FaceDistortionFilter::create(context); -// -// -// _bilateralFilter->addTarget(_bilateralAdjustFilter, 1)-> -// addTarget(_alphaBlendFilter, 0); -// -// _bilateralAdjustFilter->addTarget(_lookUpGroupFilter)-> -// addTarget(_alphaBlendFilter, 1)->addTarget(_faceDistortFilter); -// -// _alphaBlendFilter->setMix(0.8); -// -// _unSharpMaskFilter->setBlurRadiusInPixel(4.0f, true); -// _unSharpMaskFilter->setBlurRadiusInPixel(2.0f, false); -// _unSharpMaskFilter->setIntensity(1.365); -// -// _bilateralAdjustFilter->setOpacityLimit(0.6); -// -// _bilateralFilter->setDistanceNormalizationFactor(2.746); -// _bilateralFilter->setTexelSpacingMultiplier(2.7); -// -// setTerminalFilter(_faceDistortFilter); + _alphaBlendFilter->addTarget(_faceDistortFilter); + setTerminalFilter(_faceDistortFilter); std::vector defaultFace; + registerProperty("face", defaultFace, "人脸点", [this](std::vector facePoints) { + _faceDistortFilter->setFacePoints(facePoints); + }); + + registerProperty("eye", 0.0f, "大眼 0.0 - 1.0", + [this](float eye) { + _faceDistortFilter->setEye(eye); + }); + + registerProperty("slim", 0.0f, "瘦脸 0.0 - 1.0", + [this](float slim) { + _faceDistortFilter->setSlim(slim); + }); + + registerProperty("nose", 0.0f, "瘦鼻 0.0 - 1.0", + [this](float nose) { + _faceDistortFilter->setNose(nose); + }); + + registerProperty("skin", 0.0f, "磨皮 0.0 - 1.0", + [this](float skin) { + if (skin == 0.0) { + _bilateralAdjustFilter->setEnable(false); + } else { + _bilateralAdjustFilter->setEnable(true); + _bilateralAdjustFilter->setOpacityLimit(skin); + } + }); + + registerProperty("whiten", 0.0f, "美白 0.0 - 1.0", + [this](float whiten) { + _alphaBlendFilter->setMix(whiten); + }); + + return true; } @@ -169,39 +165,4 @@ namespace Opipe { } } - void OlaBeautyFilter::setSmoothing(float smoothing) { - if (_bilateralAdjustFilter == nullptr) { - return; - } - - if (smoothing == 0.0) { - _bilateralAdjustFilter->setEnable(false); - } else { - _bilateralAdjustFilter->setEnable(true); - _bilateralAdjustFilter->setOpacityLimit(smoothing); - } - } - - float OlaBeautyFilter::getSmoothing() { - if (_bilateralAdjustFilter) { - return _bilateralAdjustFilter->getOpacityLimit(); - } - return 0.0; - - } - - void OlaBeautyFilter::setWhitening(float whitening) { - if (_alphaBlendFilter) { - _alphaBlendFilter->setMix(whitening); - } - _lutFilter->setStep(whitening); - } - - float OlaBeautyFilter::getWhitening() { - if (_alphaBlendFilter) { - return _alphaBlendFilter->getMix(); - } - return 0.0; - } - } diff --git a/mediapipe/render/module/beauty/filters/OlaBeautyFilter.hpp b/mediapipe/render/module/beauty/filters/OlaBeautyFilter.hpp index 49df7118a..540718543 100644 --- a/mediapipe/render/module/beauty/filters/OlaBeautyFilter.hpp +++ b/mediapipe/render/module/beauty/filters/OlaBeautyFilter.hpp @@ -12,14 +12,6 @@ namespace Opipe { class OlaBeautyFilter : public FilterGroup { - public: - float getSmoothing(); - - float getWhitening(); - - void setSmoothing(float smoothing); - - void setWhitening(float whitening); public: static OlaBeautyFilter *create(Context *context); @@ -42,35 +34,6 @@ namespace Opipe virtual ~OlaBeautyFilter(); - void setFacePoints(std::vector facePoints) { - _faceDistortFilter->setFacePoints(facePoints); - } - - // "大眼 0.0 - 1.0" - void setEye(float eye) { - _faceDistortFilter->setEye(eye); - } - - //1.0f, "瘦脸 0.0 - 1.0", - void setSlim(float slim) { - _faceDistortFilter->setSlim(slim); - } - - // "磨皮 0.0 - 1.0" - void setSkin(float skin) { - if (skin == 0.0) { - _bilateralAdjustFilter->setEnable(false); - } else { - _bilateralAdjustFilter->setEnable(true); - _bilateralAdjustFilter->setOpacityLimit(skin); - } - } - - // "美白 0.0 - 1.0" - void setWhiten(float whiten) { - _alphaBlendFilter->setMix(whiten); - } - private: BilateralFilter *_bilateralFilter = 0; AlphaBlendFilter *_alphaBlendFilter = 0; @@ -79,7 +42,6 @@ namespace Opipe UnSharpMaskFilter *_unSharpMaskFilter = 0; FaceDistortionFilter *_faceDistortFilter = 0; FilterGroup *_lookUpGroupFilter = 0; - SourceImage *_lutImage = 0; }; } diff --git a/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/project.pbxproj b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/project.pbxproj index 5c1285085..833ee90de 100644 --- a/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/project.pbxproj +++ b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/project.pbxproj @@ -8,6 +8,7 @@ /* Begin PBXBuildFile section */ 3675CCEC28910DDB00D84244 /* CoreImage.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3675CC3128910DDB00D84244 /* CoreImage.framework */; }; + 369E735D28978A0E001F44F3 /* templateFace.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 369E72EA28978A0E001F44F3 /* templateFace.jpg */; }; 36B2393B288934B100A41D9E /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 36B2393A288934B100A41D9E /* AppDelegate.m */; }; 36B2393E288934B100A41D9E /* SceneDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 36B2393D288934B100A41D9E /* SceneDelegate.m */; }; 36B23941288934B100A41D9E /* ViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 36B23940288934B100A41D9E /* ViewController.mm */; }; @@ -58,20 +59,6 @@ remoteGlobalIDString = 6BF2BEB1CE57CAE800000000; remoteInfo = _idx_annotation_renderer_8D68840D_ios_min15.5; }; - 3675CC7828910DDB00D84244 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 6BF2BEB19D2AF81E00000000; - remoteInfo = "_idx_core_core-ios_7905855A_ios_min11.0"; - }; - 3675CC7A28910DDB00D84244 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 6BF2BEB12F27755200000000; - remoteInfo = "_idx_core_core-ios_7905855A_ios_min15.5"; - }; 3675CC7C28910DDB00D84244 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; @@ -86,132 +73,6 @@ remoteGlobalIDString = 6BF2BEB135330E2600000000; remoteInfo = _idx_cpu_op_resolver_519CBACD_ios_min15.5; }; - 3675CC8028910DDB00D84244 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 6BF2BEB1D5E0B49400000000; - remoteInfo = _idx_file_helpers_cpu_util_33FB6263_ios_min11.0; - }; - 3675CC8228910DDB00D84244 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 6BF2BEB14766558400000000; - remoteInfo = _idx_file_helpers_cpu_util_33FB6263_ios_min15.5; - }; - 3675CC8428910DDB00D84244 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 6BF2BEB161D5A49A00000000; - remoteInfo = _idx_file_path_E61EA0A1_ios_min11.0; - }; - 3675CC8628910DDB00D84244 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 6BF2BEB1B0FBE87A00000000; - remoteInfo = _idx_file_path_E61EA0A1_ios_min15.5; - }; - 3675CC8828910DDB00D84244 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 6BF2BEB1608CB6CE00000000; - remoteInfo = _idx_header_util_15139FDF_ios_min11.0; - }; - 3675CC8A28910DDB00D84244 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 6BF2BEB1E2CC764600000000; - remoteInfo = _idx_header_util_15139FDF_ios_min15.5; - }; - 3675CC8C28910DDB00D84244 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 6BF2BEB175EDC0CE00000000; - remoteInfo = _idx_image_F5FF5697_ios_min11.0; - }; - 3675CC8E28910DDB00D84244 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 6BF2BEB1BB6F5DD000000000; - remoteInfo = _idx_image_F5FF5697_ios_min15.5; - }; - 3675CC9028910DDB00D84244 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 6BF2BEB1E25C746E00000000; - remoteInfo = _idx_image_frame_graph_tracer_4E004B23_ios_min11.0; - }; - 3675CC9228910DDB00D84244 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 6BF2BEB15E75465E00000000; - remoteInfo = _idx_image_frame_graph_tracer_4E004B23_ios_min15.5; - }; - 3675CC9428910DDB00D84244 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 6BF2BEB1112804BA00000000; - remoteInfo = _idx_image_opencv_9E4E8A87_ios_min11.0; - }; - 3675CC9628910DDB00D84244 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 6BF2BEB1A8F5B73600000000; - remoteInfo = _idx_image_opencv_9E4E8A87_ios_min15.5; - }; - 3675CC9828910DDB00D84244 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 6BF2BEB117E02C1400000000; - remoteInfo = _idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_EDD516E8_ios_min11.0; - }; - 3675CC9A28910DDB00D84244 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 6BF2BEB1E77A1E6A00000000; - remoteInfo = _idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_EDD516E8_ios_min15.5; - }; - 3675CC9C28910DDB00D84244 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 6BF2BEB1F5BD4E1400000000; - remoteInfo = _idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min11.0; - }; - 3675CC9E28910DDB00D84244 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 6BF2BEB177AE156000000000; - remoteInfo = _idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min15.5; - }; - 3675CCA028910DDB00D84244 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 6BF2BEB12D97516200000000; - remoteInfo = _idx_location_image_frame_opencv_D6F50F87_ios_min11.0; - }; - 3675CCA228910DDB00D84244 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 6BF2BEB1F879A06600000000; - remoteInfo = _idx_location_image_frame_opencv_D6F50F87_ios_min15.5; - }; 3675CCA428910DDB00D84244 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; @@ -226,20 +87,6 @@ remoteGlobalIDString = 6BF2BEB1D93FD90600000000; remoteInfo = _idx_math_68C63536_ios_min15.5; }; - 3675CCA828910DDB00D84244 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 6BF2BEB16F3388EE00000000; - remoteInfo = _idx_matrix_E57ACF41_ios_min11.0; - }; - 3675CCAA28910DDB00D84244 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 6BF2BEB1BB36203600000000; - remoteInfo = _idx_matrix_E57ACF41_ios_min15.5; - }; 3675CCAC28910DDB00D84244 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; @@ -296,34 +143,6 @@ remoteGlobalIDString = 6BF2BEB10343A59400000000; remoteInfo = _idx_op_resolver_0836C983_ios_min15.5; }; - 3675CCBC28910DDB00D84244 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 6BF2BEB15757E2E000000000; - remoteInfo = _idx_profiler_resource_util_35C39BA3_ios_min11.0; - }; - 3675CCBE28910DDB00D84244 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 6BF2BEB12CFA860400000000; - remoteInfo = _idx_profiler_resource_util_35C39BA3_ios_min15.5; - }; - 3675CCC028910DDB00D84244 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 6BF2BEB196E75F6C00000000; - remoteInfo = _idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min11.0; - }; - 3675CCC228910DDB00D84244 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 6BF2BEB1C0AA537800000000; - remoteInfo = _idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min15.5; - }; 3675CCC428910DDB00D84244 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; @@ -338,34 +157,6 @@ remoteGlobalIDString = 6BF2BEB12E009AA400000000; remoteInfo = _idx_resource_util_C5C5DB93_ios_min15.5; }; - 3675CCC828910DDB00D84244 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 6BF2BEB10418151E00000000; - remoteInfo = _idx_switch_mux_calculator_container_util_sink_switch_container_switch_demux_calculator_09F5AE46_ios_min11.0; - }; - 3675CCCA28910DDB00D84244 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 6BF2BEB13330DE2400000000; - remoteInfo = _idx_switch_mux_calculator_container_util_sink_switch_container_switch_demux_calculator_09F5AE46_ios_min15.5; - }; - 3675CCCC28910DDB00D84244 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 6BF2BEB1EDDD3E1000000000; - remoteInfo = _idx_tensor_7303F5EA_ios_min11.0; - }; - 3675CCCE28910DDB00D84244 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 6BF2BEB147F7AD0200000000; - remoteInfo = _idx_tensor_7303F5EA_ios_min15.5; - }; 3675CCD028910DDB00D84244 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; @@ -380,20 +171,6 @@ remoteGlobalIDString = 6BF2BEB17982938200000000; remoteInfo = _idx_tflite_model_loader_254BEB33_ios_min15.5; }; - 3675CCD428910DDB00D84244 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 6BF2BEB1535ED83200000000; - remoteInfo = _idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_156DBF0B_ios_min11.0; - }; - 3675CCD628910DDB00D84244 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 6BF2BEB120769C4400000000; - remoteInfo = _idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_156DBF0B_ios_min15.5; - }; 3675CCD828910DDB00D84244 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; @@ -422,33 +199,201 @@ remoteGlobalIDString = 6BF2BEB17C69A2E400000000; remoteInfo = _idx_transpose_conv_bias_E3459F40_ios_min15.5; }; - 3675CCE028910DDB00D84244 /* PBXContainerItemProxy */ = { + 369E732128978A0E001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB1674D2B8C00000000; - remoteInfo = _idx_util_fill_packet_set_node_packet_46C4C02A_ios_min11.0; + remoteGlobalIDString = 6BF2BEB15656FB7600000000; + remoteInfo = _idx_annotation_overlay_calculator_D98E9275_ios_min11.0; }; - 3675CCE228910DDB00D84244 /* PBXContainerItemProxy */ = { + 369E732328978A0E001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB1BF5A686400000000; - remoteInfo = _idx_util_fill_packet_set_node_packet_46C4C02A_ios_min15.5; + remoteGlobalIDString = 6BF2BEB15BA3402400000000; + remoteInfo = _idx_annotation_overlay_calculator_D98E9275_ios_min15.5; }; - 3675CCE428910DDB00D84244 /* PBXContainerItemProxy */ = { + 369E732528978A0E001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB12CFEB45C00000000; - remoteInfo = _idx_validate_name_name_util_options_field_util_options_registry_options_syntax_util_options_util_packet_generator_wrapper_calculator_proto_util_lite_rectangle_util_subgraph_expansi_etc_99160F50_ios_min11.0; + remoteGlobalIDString = 6BF2BEB1AE45ACD400000000; + remoteInfo = _idx_begin_loop_calculator_50B5F6A2_ios_min11.0; }; - 3675CCE628910DDB00D84244 /* PBXContainerItemProxy */ = { + 369E732728978A0E001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB1A6704F1C00000000; - remoteInfo = _idx_validate_name_name_util_options_field_util_options_registry_options_syntax_util_options_util_packet_generator_wrapper_calculator_proto_util_lite_rectangle_util_subgraph_expansi_etc_99160F50_ios_min15.5; + remoteGlobalIDString = 6BF2BEB120CC110A00000000; + remoteInfo = _idx_begin_loop_calculator_50B5F6A2_ios_min15.5; + }; + 369E732928978A0E001F44F3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB100939AF800000000; + remoteInfo = _idx_clip_vector_size_calculator_C1D859C1_ios_min11.0; + }; + 369E732B28978A0E001F44F3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB15FE6FF0200000000; + remoteInfo = _idx_clip_vector_size_calculator_C1D859C1_ios_min15.5; + }; + 369E732D28978A0E001F44F3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB1E922429600000000; + remoteInfo = "_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min11.0"; + }; + 369E732F28978A0E001F44F3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB1C9C325FA00000000; + remoteInfo = "_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min15.5"; + }; + 369E733128978A0E001F44F3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB1311D3FFA00000000; + remoteInfo = _idx_cpu_util_C9677097_ios_min11.0; + }; + 369E733328978A0E001F44F3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB16F17AAC200000000; + remoteInfo = _idx_cpu_util_C9677097_ios_min15.5; + }; + 369E733528978A0E001F44F3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB126D0D2E600000000; + remoteInfo = _idx_detection_projection_calculator_6C26583E_ios_min11.0; + }; + 369E733728978A0E001F44F3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB1D488EF1800000000; + remoteInfo = _idx_detection_projection_calculator_6C26583E_ios_min15.5; + }; + 369E733928978A0E001F44F3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB1D89D727E00000000; + remoteInfo = _idx_end_loop_calculator_AADF2B85_ios_min11.0; + }; + 369E733B28978A0E001F44F3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB185A9B3FE00000000; + remoteInfo = _idx_end_loop_calculator_AADF2B85_ios_min15.5; + }; + 369E733D28978A0E001F44F3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB1C40DE00800000000; + remoteInfo = _idx_non_max_suppression_calculator_E13679C5_ios_min11.0; + }; + 369E733F28978A0E001F44F3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB179FA7B5A00000000; + remoteInfo = _idx_non_max_suppression_calculator_E13679C5_ios_min15.5; + }; + 369E734128978A0E001F44F3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB1E88ABD0C00000000; + remoteInfo = _idx_previous_loopback_calculator_header_util_D60754F6_ios_min11.0; + }; + 369E734328978A0E001F44F3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB12B5DD40E00000000; + remoteInfo = _idx_previous_loopback_calculator_header_util_D60754F6_ios_min15.5; + }; + 369E734528978A0E001F44F3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB10F69F5F200000000; + remoteInfo = _idx_rectangle_util_BC608102_ios_min11.0; + }; + 369E734728978A0E001F44F3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB1A374D54C00000000; + remoteInfo = _idx_rectangle_util_BC608102_ios_min15.5; + }; + 369E734928978A0E001F44F3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB12E6EE1D200000000; + remoteInfo = _idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min11.0; + }; + 369E734B28978A0E001F44F3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB1E3F4AD9A00000000; + remoteInfo = _idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min15.5; + }; + 369E734D28978A0E001F44F3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB115B04C8C00000000; + remoteInfo = _idx_split_vector_calculator_ED1EBC41_ios_min11.0; + }; + 369E734F28978A0E001F44F3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB1A384020200000000; + remoteInfo = _idx_split_vector_calculator_ED1EBC41_ios_min15.5; + }; + 369E735128978A0E001F44F3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB13E6E92F600000000; + remoteInfo = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min11.0; + }; + 369E735328978A0E001F44F3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB1F180FE8800000000; + remoteInfo = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min15.5; + }; + 369E735528978A0E001F44F3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB17384850E00000000; + remoteInfo = _idx_util_C76AD427_ios_min11.0; + }; + 369E735728978A0E001F44F3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB110B1FD6E00000000; + remoteInfo = _idx_util_C76AD427_ios_min15.5; }; 36B239A428893CEE00A41D9E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -525,6 +470,7 @@ /* Begin PBXFileReference section */ 3675CC3128910DDB00D84244 /* CoreImage.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreImage.framework; path = System/Library/Frameworks/CoreImage.framework; sourceTree = SDKROOT; }; + 369E72EA28978A0E001F44F3 /* templateFace.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = templateFace.jpg; sourceTree = ""; }; 36B23936288934B100A41D9E /* OpipeBeautyModuleExample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = OpipeBeautyModuleExample.app; sourceTree = BUILT_PRODUCTS_DIR; }; 36B23939288934B100A41D9E /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = ""; }; 36B2393A288934B100A41D9E /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = ""; }; @@ -598,6 +544,7 @@ 36B2393D288934B100A41D9E /* SceneDelegate.m */, 36B2393F288934B100A41D9E /* ViewController.h */, 36B23940288934B100A41D9E /* ViewController.mm */, + 369E72EA28978A0E001F44F3 /* templateFace.jpg */, 36B23942288934B100A41D9E /* Main.storyboard */, 36B23945288934B200A41D9E /* Assets.xcassets */, 36B23947288934B200A41D9E /* LaunchScreen.storyboard */, @@ -639,64 +586,56 @@ 36B23CD0288A7FB600A41D9E /* OlaFaceUnityFramework.framework */, 3675CC7128910DDB00D84244 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min11.0.a */, 3675CC7328910DDB00D84244 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min15.5.a */, + 369E732228978A0E001F44F3 /* lib_idx_annotation_overlay_calculator_D98E9275_ios_min11.0.a */, + 369E732428978A0E001F44F3 /* lib_idx_annotation_overlay_calculator_D98E9275_ios_min15.5.a */, 3675CC7528910DDB00D84244 /* lib_idx_annotation_renderer_8D68840D_ios_min11.0.a */, 3675CC7728910DDB00D84244 /* lib_idx_annotation_renderer_8D68840D_ios_min15.5.a */, - 3675CC7928910DDB00D84244 /* lib_idx_core_core-ios_7905855A_ios_min11.0.a */, - 3675CC7B28910DDB00D84244 /* lib_idx_core_core-ios_7905855A_ios_min15.5.a */, + 369E732628978A0E001F44F3 /* lib_idx_begin_loop_calculator_50B5F6A2_ios_min11.0.a */, + 369E732828978A0E001F44F3 /* lib_idx_begin_loop_calculator_50B5F6A2_ios_min15.5.a */, + 369E732A28978A0E001F44F3 /* lib_idx_clip_vector_size_calculator_C1D859C1_ios_min11.0.a */, + 369E732C28978A0E001F44F3 /* lib_idx_clip_vector_size_calculator_C1D859C1_ios_min15.5.a */, + 369E732E28978A0E001F44F3 /* lib_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min11.0.a */, + 369E733028978A0E001F44F3 /* lib_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min15.5.a */, 3675CC7D28910DDB00D84244 /* lib_idx_cpu_op_resolver_519CBACD_ios_min11.0.a */, 3675CC7F28910DDB00D84244 /* lib_idx_cpu_op_resolver_519CBACD_ios_min15.5.a */, - 3675CC8128910DDB00D84244 /* lib_idx_file_helpers_cpu_util_33FB6263_ios_min11.0.a */, - 3675CC8328910DDB00D84244 /* lib_idx_file_helpers_cpu_util_33FB6263_ios_min15.5.a */, - 3675CC8528910DDB00D84244 /* lib_idx_file_path_E61EA0A1_ios_min11.0.a */, - 3675CC8728910DDB00D84244 /* lib_idx_file_path_E61EA0A1_ios_min15.5.a */, - 3675CC8928910DDB00D84244 /* lib_idx_header_util_15139FDF_ios_min11.0.a */, - 3675CC8B28910DDB00D84244 /* lib_idx_header_util_15139FDF_ios_min15.5.a */, - 3675CC8D28910DDB00D84244 /* lib_idx_image_F5FF5697_ios_min11.0.a */, - 3675CC8F28910DDB00D84244 /* lib_idx_image_F5FF5697_ios_min15.5.a */, - 3675CC9128910DDB00D84244 /* lib_idx_image_frame_graph_tracer_4E004B23_ios_min11.0.a */, - 3675CC9328910DDB00D84244 /* lib_idx_image_frame_graph_tracer_4E004B23_ios_min15.5.a */, - 3675CC9528910DDB00D84244 /* lib_idx_image_opencv_9E4E8A87_ios_min11.0.a */, - 3675CC9728910DDB00D84244 /* lib_idx_image_opencv_9E4E8A87_ios_min15.5.a */, - 3675CC9928910DDB00D84244 /* lib_idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_EDD516E8_ios_min11.0.a */, - 3675CC9B28910DDB00D84244 /* lib_idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_EDD516E8_ios_min15.5.a */, - 3675CC9D28910DDB00D84244 /* lib_idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min11.0.a */, - 3675CC9F28910DDB00D84244 /* lib_idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min15.5.a */, - 3675CCA128910DDB00D84244 /* lib_idx_location_image_frame_opencv_D6F50F87_ios_min11.0.a */, - 3675CCA328910DDB00D84244 /* lib_idx_location_image_frame_opencv_D6F50F87_ios_min15.5.a */, + 369E733228978A0E001F44F3 /* lib_idx_cpu_util_C9677097_ios_min11.0.a */, + 369E733428978A0E001F44F3 /* lib_idx_cpu_util_C9677097_ios_min15.5.a */, + 369E733628978A0E001F44F3 /* lib_idx_detection_projection_calculator_6C26583E_ios_min11.0.a */, + 369E733828978A0E001F44F3 /* lib_idx_detection_projection_calculator_6C26583E_ios_min15.5.a */, + 369E733A28978A0E001F44F3 /* lib_idx_end_loop_calculator_AADF2B85_ios_min11.0.a */, + 369E733C28978A0E001F44F3 /* lib_idx_end_loop_calculator_AADF2B85_ios_min15.5.a */, 3675CCA528910DDB00D84244 /* lib_idx_math_68C63536_ios_min11.0.a */, 3675CCA728910DDB00D84244 /* lib_idx_math_68C63536_ios_min15.5.a */, - 3675CCA928910DDB00D84244 /* lib_idx_matrix_E57ACF41_ios_min11.0.a */, - 3675CCAB28910DDB00D84244 /* lib_idx_matrix_E57ACF41_ios_min15.5.a */, 3675CCAD28910DDB00D84244 /* lib_idx_max_unpooling_max_pool_argmax_615F909D_ios_min11.0.a */, 3675CCAF28910DDB00D84244 /* lib_idx_max_unpooling_max_pool_argmax_615F909D_ios_min15.5.a */, 3675CCB128910DDB00D84244 /* lib_idx_mediapipe_framework_ios_C158E828_ios_min11.0.a */, 3675CCB328910DDB00D84244 /* lib_idx_mediapipe_framework_ios_C158E828_ios_min15.5.a */, + 369E733E28978A0E001F44F3 /* lib_idx_non_max_suppression_calculator_E13679C5_ios_min11.0.a */, + 369E734028978A0E001F44F3 /* lib_idx_non_max_suppression_calculator_E13679C5_ios_min15.5.a */, 3675CCB528910DDB00D84244 /* lib_idx_olamodule_common_library_63E72567_ios_min11.0.a */, 3675CCB728910DDB00D84244 /* lib_idx_olamodule_common_library_63E72567_ios_min15.5.a */, 3675CCB928910DDB00D84244 /* lib_idx_op_resolver_0836C983_ios_min11.0.a */, 3675CCBB28910DDB00D84244 /* lib_idx_op_resolver_0836C983_ios_min15.5.a */, - 3675CCBD28910DDB00D84244 /* lib_idx_profiler_resource_util_35C39BA3_ios_min11.0.a */, - 3675CCBF28910DDB00D84244 /* lib_idx_profiler_resource_util_35C39BA3_ios_min15.5.a */, - 3675CCC128910DDB00D84244 /* lib_idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min11.0.a */, - 3675CCC328910DDB00D84244 /* lib_idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min15.5.a */, + 369E734228978A0E001F44F3 /* lib_idx_previous_loopback_calculator_header_util_D60754F6_ios_min11.0.a */, + 369E734428978A0E001F44F3 /* lib_idx_previous_loopback_calculator_header_util_D60754F6_ios_min15.5.a */, + 369E734628978A0E001F44F3 /* lib_idx_rectangle_util_BC608102_ios_min11.0.a */, + 369E734828978A0E001F44F3 /* lib_idx_rectangle_util_BC608102_ios_min15.5.a */, + 369E734A28978A0E001F44F3 /* lib_idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min11.0.a */, + 369E734C28978A0E001F44F3 /* lib_idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min15.5.a */, 3675CCC528910DDB00D84244 /* lib_idx_resource_util_C5C5DB93_ios_min11.0.a */, 3675CCC728910DDB00D84244 /* lib_idx_resource_util_C5C5DB93_ios_min15.5.a */, - 3675CCC928910DDB00D84244 /* lib_idx_switch_mux_calculator_container_util_sink_switch_container_switch_demux_calculator_09F5AE46_ios_min11.0.a */, - 3675CCCB28910DDB00D84244 /* lib_idx_switch_mux_calculator_container_util_sink_switch_container_switch_demux_calculator_09F5AE46_ios_min15.5.a */, - 3675CCCD28910DDB00D84244 /* lib_idx_tensor_7303F5EA_ios_min11.0.a */, - 3675CCCF28910DDB00D84244 /* lib_idx_tensor_7303F5EA_ios_min15.5.a */, + 369E734E28978A0E001F44F3 /* lib_idx_split_vector_calculator_ED1EBC41_ios_min11.0.a */, + 369E735028978A0E001F44F3 /* lib_idx_split_vector_calculator_ED1EBC41_ios_min15.5.a */, 3675CCD128910DDB00D84244 /* lib_idx_tflite_model_loader_254BEB33_ios_min11.0.a */, 3675CCD328910DDB00D84244 /* lib_idx_tflite_model_loader_254BEB33_ios_min15.5.a */, - 3675CCD528910DDB00D84244 /* lib_idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_156DBF0B_ios_min11.0.a */, - 3675CCD728910DDB00D84244 /* lib_idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_156DBF0B_ios_min15.5.a */, + 369E735228978A0E001F44F3 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min11.0.a */, + 369E735428978A0E001F44F3 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min15.5.a */, 3675CCD928910DDB00D84244 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min11.0.a */, 3675CCDB28910DDB00D84244 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min15.5.a */, 3675CCDD28910DDB00D84244 /* lib_idx_transpose_conv_bias_E3459F40_ios_min11.0.a */, 3675CCDF28910DDB00D84244 /* lib_idx_transpose_conv_bias_E3459F40_ios_min15.5.a */, - 3675CCE128910DDB00D84244 /* lib_idx_util_fill_packet_set_node_packet_46C4C02A_ios_min11.0.a */, - 3675CCE328910DDB00D84244 /* lib_idx_util_fill_packet_set_node_packet_46C4C02A_ios_min15.5.a */, - 3675CCE528910DDB00D84244 /* lib_idx_validate_name_name_util_options_field_util_options_registry_options_syntax_util_options_util_packet_generator_wrapper_calculator_proto_util_lite_rectangle_util_subgraph_expansi_etc_99160F50_ios_min11.0.a */, - 3675CCE728910DDB00D84244 /* lib_idx_validate_name_name_util_options_field_util_options_registry_options_syntax_util_options_util_packet_generator_wrapper_calculator_proto_util_lite_rectangle_util_subgraph_expansi_etc_99160F50_ios_min15.5.a */, + 369E735628978A0E001F44F3 /* lib_idx_util_C76AD427_ios_min11.0.a */, + 369E735828978A0E001F44F3 /* lib_idx_util_C76AD427_ios_min15.5.a */, 36B23D66288A7FB600A41D9E /* libmediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary.a */, ); name = Products; @@ -796,20 +735,6 @@ remoteRef = 3675CC7628910DDB00D84244 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 3675CC7928910DDB00D84244 /* lib_idx_core_core-ios_7905855A_ios_min11.0.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = "lib_idx_core_core-ios_7905855A_ios_min11.0.a"; - remoteRef = 3675CC7828910DDB00D84244 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 3675CC7B28910DDB00D84244 /* lib_idx_core_core-ios_7905855A_ios_min15.5.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = "lib_idx_core_core-ios_7905855A_ios_min15.5.a"; - remoteRef = 3675CC7A28910DDB00D84244 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; 3675CC7D28910DDB00D84244 /* lib_idx_cpu_op_resolver_519CBACD_ios_min11.0.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; @@ -824,132 +749,6 @@ remoteRef = 3675CC7E28910DDB00D84244 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 3675CC8128910DDB00D84244 /* lib_idx_file_helpers_cpu_util_33FB6263_ios_min11.0.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = lib_idx_file_helpers_cpu_util_33FB6263_ios_min11.0.a; - remoteRef = 3675CC8028910DDB00D84244 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 3675CC8328910DDB00D84244 /* lib_idx_file_helpers_cpu_util_33FB6263_ios_min15.5.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = lib_idx_file_helpers_cpu_util_33FB6263_ios_min15.5.a; - remoteRef = 3675CC8228910DDB00D84244 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 3675CC8528910DDB00D84244 /* lib_idx_file_path_E61EA0A1_ios_min11.0.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = lib_idx_file_path_E61EA0A1_ios_min11.0.a; - remoteRef = 3675CC8428910DDB00D84244 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 3675CC8728910DDB00D84244 /* lib_idx_file_path_E61EA0A1_ios_min15.5.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = lib_idx_file_path_E61EA0A1_ios_min15.5.a; - remoteRef = 3675CC8628910DDB00D84244 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 3675CC8928910DDB00D84244 /* lib_idx_header_util_15139FDF_ios_min11.0.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = lib_idx_header_util_15139FDF_ios_min11.0.a; - remoteRef = 3675CC8828910DDB00D84244 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 3675CC8B28910DDB00D84244 /* lib_idx_header_util_15139FDF_ios_min15.5.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = lib_idx_header_util_15139FDF_ios_min15.5.a; - remoteRef = 3675CC8A28910DDB00D84244 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 3675CC8D28910DDB00D84244 /* lib_idx_image_F5FF5697_ios_min11.0.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = lib_idx_image_F5FF5697_ios_min11.0.a; - remoteRef = 3675CC8C28910DDB00D84244 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 3675CC8F28910DDB00D84244 /* lib_idx_image_F5FF5697_ios_min15.5.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = lib_idx_image_F5FF5697_ios_min15.5.a; - remoteRef = 3675CC8E28910DDB00D84244 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 3675CC9128910DDB00D84244 /* lib_idx_image_frame_graph_tracer_4E004B23_ios_min11.0.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = lib_idx_image_frame_graph_tracer_4E004B23_ios_min11.0.a; - remoteRef = 3675CC9028910DDB00D84244 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 3675CC9328910DDB00D84244 /* lib_idx_image_frame_graph_tracer_4E004B23_ios_min15.5.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = lib_idx_image_frame_graph_tracer_4E004B23_ios_min15.5.a; - remoteRef = 3675CC9228910DDB00D84244 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 3675CC9528910DDB00D84244 /* lib_idx_image_opencv_9E4E8A87_ios_min11.0.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = lib_idx_image_opencv_9E4E8A87_ios_min11.0.a; - remoteRef = 3675CC9428910DDB00D84244 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 3675CC9728910DDB00D84244 /* lib_idx_image_opencv_9E4E8A87_ios_min15.5.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = lib_idx_image_opencv_9E4E8A87_ios_min15.5.a; - remoteRef = 3675CC9628910DDB00D84244 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 3675CC9928910DDB00D84244 /* lib_idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_EDD516E8_ios_min11.0.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = lib_idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_EDD516E8_ios_min11.0.a; - remoteRef = 3675CC9828910DDB00D84244 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 3675CC9B28910DDB00D84244 /* lib_idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_EDD516E8_ios_min15.5.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = lib_idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_EDD516E8_ios_min15.5.a; - remoteRef = 3675CC9A28910DDB00D84244 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 3675CC9D28910DDB00D84244 /* lib_idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min11.0.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = lib_idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min11.0.a; - remoteRef = 3675CC9C28910DDB00D84244 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 3675CC9F28910DDB00D84244 /* lib_idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min15.5.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = lib_idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min15.5.a; - remoteRef = 3675CC9E28910DDB00D84244 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 3675CCA128910DDB00D84244 /* lib_idx_location_image_frame_opencv_D6F50F87_ios_min11.0.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = lib_idx_location_image_frame_opencv_D6F50F87_ios_min11.0.a; - remoteRef = 3675CCA028910DDB00D84244 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 3675CCA328910DDB00D84244 /* lib_idx_location_image_frame_opencv_D6F50F87_ios_min15.5.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = lib_idx_location_image_frame_opencv_D6F50F87_ios_min15.5.a; - remoteRef = 3675CCA228910DDB00D84244 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; 3675CCA528910DDB00D84244 /* lib_idx_math_68C63536_ios_min11.0.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; @@ -964,20 +763,6 @@ remoteRef = 3675CCA628910DDB00D84244 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 3675CCA928910DDB00D84244 /* lib_idx_matrix_E57ACF41_ios_min11.0.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = lib_idx_matrix_E57ACF41_ios_min11.0.a; - remoteRef = 3675CCA828910DDB00D84244 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 3675CCAB28910DDB00D84244 /* lib_idx_matrix_E57ACF41_ios_min15.5.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = lib_idx_matrix_E57ACF41_ios_min15.5.a; - remoteRef = 3675CCAA28910DDB00D84244 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; 3675CCAD28910DDB00D84244 /* lib_idx_max_unpooling_max_pool_argmax_615F909D_ios_min11.0.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; @@ -1034,34 +819,6 @@ remoteRef = 3675CCBA28910DDB00D84244 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 3675CCBD28910DDB00D84244 /* lib_idx_profiler_resource_util_35C39BA3_ios_min11.0.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = lib_idx_profiler_resource_util_35C39BA3_ios_min11.0.a; - remoteRef = 3675CCBC28910DDB00D84244 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 3675CCBF28910DDB00D84244 /* lib_idx_profiler_resource_util_35C39BA3_ios_min15.5.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = lib_idx_profiler_resource_util_35C39BA3_ios_min15.5.a; - remoteRef = 3675CCBE28910DDB00D84244 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 3675CCC128910DDB00D84244 /* lib_idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min11.0.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = lib_idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min11.0.a; - remoteRef = 3675CCC028910DDB00D84244 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 3675CCC328910DDB00D84244 /* lib_idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min15.5.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = lib_idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min15.5.a; - remoteRef = 3675CCC228910DDB00D84244 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; 3675CCC528910DDB00D84244 /* lib_idx_resource_util_C5C5DB93_ios_min11.0.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; @@ -1076,34 +833,6 @@ remoteRef = 3675CCC628910DDB00D84244 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 3675CCC928910DDB00D84244 /* lib_idx_switch_mux_calculator_container_util_sink_switch_container_switch_demux_calculator_09F5AE46_ios_min11.0.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = lib_idx_switch_mux_calculator_container_util_sink_switch_container_switch_demux_calculator_09F5AE46_ios_min11.0.a; - remoteRef = 3675CCC828910DDB00D84244 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 3675CCCB28910DDB00D84244 /* lib_idx_switch_mux_calculator_container_util_sink_switch_container_switch_demux_calculator_09F5AE46_ios_min15.5.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = lib_idx_switch_mux_calculator_container_util_sink_switch_container_switch_demux_calculator_09F5AE46_ios_min15.5.a; - remoteRef = 3675CCCA28910DDB00D84244 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 3675CCCD28910DDB00D84244 /* lib_idx_tensor_7303F5EA_ios_min11.0.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = lib_idx_tensor_7303F5EA_ios_min11.0.a; - remoteRef = 3675CCCC28910DDB00D84244 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 3675CCCF28910DDB00D84244 /* lib_idx_tensor_7303F5EA_ios_min15.5.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = lib_idx_tensor_7303F5EA_ios_min15.5.a; - remoteRef = 3675CCCE28910DDB00D84244 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; 3675CCD128910DDB00D84244 /* lib_idx_tflite_model_loader_254BEB33_ios_min11.0.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; @@ -1118,20 +847,6 @@ remoteRef = 3675CCD228910DDB00D84244 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 3675CCD528910DDB00D84244 /* lib_idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_156DBF0B_ios_min11.0.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = lib_idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_156DBF0B_ios_min11.0.a; - remoteRef = 3675CCD428910DDB00D84244 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 3675CCD728910DDB00D84244 /* lib_idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_156DBF0B_ios_min15.5.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = lib_idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_156DBF0B_ios_min15.5.a; - remoteRef = 3675CCD628910DDB00D84244 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; 3675CCD928910DDB00D84244 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min11.0.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; @@ -1160,32 +875,200 @@ remoteRef = 3675CCDE28910DDB00D84244 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 3675CCE128910DDB00D84244 /* lib_idx_util_fill_packet_set_node_packet_46C4C02A_ios_min11.0.a */ = { + 369E732228978A0E001F44F3 /* lib_idx_annotation_overlay_calculator_D98E9275_ios_min11.0.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; - path = lib_idx_util_fill_packet_set_node_packet_46C4C02A_ios_min11.0.a; - remoteRef = 3675CCE028910DDB00D84244 /* PBXContainerItemProxy */; + path = lib_idx_annotation_overlay_calculator_D98E9275_ios_min11.0.a; + remoteRef = 369E732128978A0E001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 3675CCE328910DDB00D84244 /* lib_idx_util_fill_packet_set_node_packet_46C4C02A_ios_min15.5.a */ = { + 369E732428978A0E001F44F3 /* lib_idx_annotation_overlay_calculator_D98E9275_ios_min15.5.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; - path = lib_idx_util_fill_packet_set_node_packet_46C4C02A_ios_min15.5.a; - remoteRef = 3675CCE228910DDB00D84244 /* PBXContainerItemProxy */; + path = lib_idx_annotation_overlay_calculator_D98E9275_ios_min15.5.a; + remoteRef = 369E732328978A0E001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 3675CCE528910DDB00D84244 /* lib_idx_validate_name_name_util_options_field_util_options_registry_options_syntax_util_options_util_packet_generator_wrapper_calculator_proto_util_lite_rectangle_util_subgraph_expansi_etc_99160F50_ios_min11.0.a */ = { + 369E732628978A0E001F44F3 /* lib_idx_begin_loop_calculator_50B5F6A2_ios_min11.0.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; - path = lib_idx_validate_name_name_util_options_field_util_options_registry_options_syntax_util_options_util_packet_generator_wrapper_calculator_proto_util_lite_rectangle_util_subgraph_expansi_etc_99160F50_ios_min11.0.a; - remoteRef = 3675CCE428910DDB00D84244 /* PBXContainerItemProxy */; + path = lib_idx_begin_loop_calculator_50B5F6A2_ios_min11.0.a; + remoteRef = 369E732528978A0E001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 3675CCE728910DDB00D84244 /* lib_idx_validate_name_name_util_options_field_util_options_registry_options_syntax_util_options_util_packet_generator_wrapper_calculator_proto_util_lite_rectangle_util_subgraph_expansi_etc_99160F50_ios_min15.5.a */ = { + 369E732828978A0E001F44F3 /* lib_idx_begin_loop_calculator_50B5F6A2_ios_min15.5.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; - path = lib_idx_validate_name_name_util_options_field_util_options_registry_options_syntax_util_options_util_packet_generator_wrapper_calculator_proto_util_lite_rectangle_util_subgraph_expansi_etc_99160F50_ios_min15.5.a; - remoteRef = 3675CCE628910DDB00D84244 /* PBXContainerItemProxy */; + path = lib_idx_begin_loop_calculator_50B5F6A2_ios_min15.5.a; + remoteRef = 369E732728978A0E001F44F3 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 369E732A28978A0E001F44F3 /* lib_idx_clip_vector_size_calculator_C1D859C1_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_clip_vector_size_calculator_C1D859C1_ios_min11.0.a; + remoteRef = 369E732928978A0E001F44F3 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 369E732C28978A0E001F44F3 /* lib_idx_clip_vector_size_calculator_C1D859C1_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_clip_vector_size_calculator_C1D859C1_ios_min15.5.a; + remoteRef = 369E732B28978A0E001F44F3 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 369E732E28978A0E001F44F3 /* lib_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = "lib_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min11.0.a"; + remoteRef = 369E732D28978A0E001F44F3 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 369E733028978A0E001F44F3 /* lib_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = "lib_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min15.5.a"; + remoteRef = 369E732F28978A0E001F44F3 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 369E733228978A0E001F44F3 /* lib_idx_cpu_util_C9677097_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_cpu_util_C9677097_ios_min11.0.a; + remoteRef = 369E733128978A0E001F44F3 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 369E733428978A0E001F44F3 /* lib_idx_cpu_util_C9677097_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_cpu_util_C9677097_ios_min15.5.a; + remoteRef = 369E733328978A0E001F44F3 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 369E733628978A0E001F44F3 /* lib_idx_detection_projection_calculator_6C26583E_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_detection_projection_calculator_6C26583E_ios_min11.0.a; + remoteRef = 369E733528978A0E001F44F3 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 369E733828978A0E001F44F3 /* lib_idx_detection_projection_calculator_6C26583E_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_detection_projection_calculator_6C26583E_ios_min15.5.a; + remoteRef = 369E733728978A0E001F44F3 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 369E733A28978A0E001F44F3 /* lib_idx_end_loop_calculator_AADF2B85_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_end_loop_calculator_AADF2B85_ios_min11.0.a; + remoteRef = 369E733928978A0E001F44F3 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 369E733C28978A0E001F44F3 /* lib_idx_end_loop_calculator_AADF2B85_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_end_loop_calculator_AADF2B85_ios_min15.5.a; + remoteRef = 369E733B28978A0E001F44F3 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 369E733E28978A0E001F44F3 /* lib_idx_non_max_suppression_calculator_E13679C5_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_non_max_suppression_calculator_E13679C5_ios_min11.0.a; + remoteRef = 369E733D28978A0E001F44F3 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 369E734028978A0E001F44F3 /* lib_idx_non_max_suppression_calculator_E13679C5_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_non_max_suppression_calculator_E13679C5_ios_min15.5.a; + remoteRef = 369E733F28978A0E001F44F3 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 369E734228978A0E001F44F3 /* lib_idx_previous_loopback_calculator_header_util_D60754F6_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_previous_loopback_calculator_header_util_D60754F6_ios_min11.0.a; + remoteRef = 369E734128978A0E001F44F3 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 369E734428978A0E001F44F3 /* lib_idx_previous_loopback_calculator_header_util_D60754F6_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_previous_loopback_calculator_header_util_D60754F6_ios_min15.5.a; + remoteRef = 369E734328978A0E001F44F3 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 369E734628978A0E001F44F3 /* lib_idx_rectangle_util_BC608102_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_rectangle_util_BC608102_ios_min11.0.a; + remoteRef = 369E734528978A0E001F44F3 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 369E734828978A0E001F44F3 /* lib_idx_rectangle_util_BC608102_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_rectangle_util_BC608102_ios_min15.5.a; + remoteRef = 369E734728978A0E001F44F3 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 369E734A28978A0E001F44F3 /* lib_idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min11.0.a; + remoteRef = 369E734928978A0E001F44F3 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 369E734C28978A0E001F44F3 /* lib_idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min15.5.a; + remoteRef = 369E734B28978A0E001F44F3 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 369E734E28978A0E001F44F3 /* lib_idx_split_vector_calculator_ED1EBC41_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_split_vector_calculator_ED1EBC41_ios_min11.0.a; + remoteRef = 369E734D28978A0E001F44F3 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 369E735028978A0E001F44F3 /* lib_idx_split_vector_calculator_ED1EBC41_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_split_vector_calculator_ED1EBC41_ios_min15.5.a; + remoteRef = 369E734F28978A0E001F44F3 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 369E735228978A0E001F44F3 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min11.0.a; + remoteRef = 369E735128978A0E001F44F3 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 369E735428978A0E001F44F3 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min15.5.a; + remoteRef = 369E735328978A0E001F44F3 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 369E735628978A0E001F44F3 /* lib_idx_util_C76AD427_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_util_C76AD427_ios_min11.0.a; + remoteRef = 369E735528978A0E001F44F3 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 369E735828978A0E001F44F3 /* lib_idx_util_C76AD427_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_util_C76AD427_ios_min15.5.a; + remoteRef = 369E735728978A0E001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; 36B239A528893CEE00A41D9E /* OlaCameraFramework.framework */ = { @@ -1218,7 +1101,7 @@ }; 36B23CD0288A7FB600A41D9E /* OlaFaceUnityFramework.framework */ = { isa = PBXReferenceProxy; - fileType = wrapper.framework.static; + fileType = wrapper.framework; path = OlaFaceUnityFramework.framework; remoteRef = 36B23CCF288A7FB600A41D9E /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; @@ -1239,6 +1122,7 @@ files = ( 36B23949288934B200A41D9E /* LaunchScreen.storyboard in Resources */, 36B23946288934B200A41D9E /* Assets.xcassets in Resources */, + 369E735D28978A0E001F44F3 /* templateFace.jpg in Resources */, 36B23944288934B100A41D9E /* Main.storyboard in Resources */, ); runOnlyForDeploymentPostprocessing = 0; diff --git a/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/project.xcworkspace/xcuserdata/wangrenzhu.xcuserdatad/UserInterfaceState.xcuserstate b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/project.xcworkspace/xcuserdata/wangrenzhu.xcuserdatad/UserInterfaceState.xcuserstate index 3f5da3003..1e47bdc80 100644 Binary files a/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/project.xcworkspace/xcuserdata/wangrenzhu.xcuserdatad/UserInterfaceState.xcuserstate and b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/project.xcworkspace/xcuserdata/wangrenzhu.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/xcuserdata/wangrenzhu.xcuserdatad/xcschemes/xcschememanagement.plist b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/xcuserdata/wangrenzhu.xcuserdatad/xcschemes/xcschememanagement.plist index 843d18248..2f3814dde 100644 --- a/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/xcuserdata/wangrenzhu.xcuserdatad/xcschemes/xcschememanagement.plist +++ b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/xcuserdata/wangrenzhu.xcuserdatad/xcschemes/xcschememanagement.plist @@ -7,7 +7,7 @@ OpipeBeautyModuleExample.xcscheme_^#shared#^_ orderHint - 7 + 3 SuppressBuildableAutocreation diff --git a/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/Assets.xcassets/templateFace.imageset/Contents.json b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/Assets.xcassets/templateFace.imageset/Contents.json new file mode 100644 index 000000000..065a6d71e --- /dev/null +++ b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/Assets.xcassets/templateFace.imageset/Contents.json @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "templateFace.jpg", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/Assets.xcassets/templateFace.imageset/templateFace.jpg b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/Assets.xcassets/templateFace.imageset/templateFace.jpg new file mode 100644 index 000000000..15ad13696 Binary files /dev/null and b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/Assets.xcassets/templateFace.imageset/templateFace.jpg differ diff --git a/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/ViewController.mm b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/ViewController.mm index a961107fa..9c95af76e 100644 --- a/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/ViewController.mm +++ b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/ViewController.mm @@ -64,6 +64,7 @@ AVCaptureAudioDataOutputSampleBufferDelegate> { } [self setupSession]; + [[OlaFaceUnity sharedInstance] resume]; } - (void)viewDidLayoutSubviews @@ -254,29 +255,26 @@ AVCaptureAudioDataOutputSampleBufferDelegate> { } } -- (IOSurfaceID)bgraCameraTextureReady:(OlaShareTexture *)texture +- (void)bgraCameraTextureReady:(OlaShareTexture *)texture onScreenTexture:(OlaShareTexture *)onScreenTexture frameTime:(NSTimeInterval)frameTime { - [[OlaFaceUnity sharedInstance] processVideoFrame:onScreenTexture.renderTarget timeStamp:frameTime]; - FaceTextureInfo inputTexture; - inputTexture.width = onScreenTexture.size.width; - inputTexture.height = onScreenTexture.size.height; - inputTexture.textureId = onScreenTexture.openGLTexture; - inputTexture.ioSurfaceId = onScreenTexture.surfaceID; - inputTexture.frameTime = frameTime; - FaceTextureInfo result = [[OlaFaceUnity sharedInstance] render:inputTexture]; - NSLog(@"result ioSurfaceId:%d", result.ioSurfaceId); - return result.ioSurfaceId; - + [[OlaFaceUnity sharedInstance] processVideoFrame:texture.renderTarget timeStamp:frameTime]; } -- (void)externalRender:(NSTimeInterval)frameTime +- (IOSurfaceID)externalRender:(NSTimeInterval)frameTime targetTexture:(OlaShareTexture *)targetTexture commandBuffer:(id)buffer { - + FaceTextureInfo inputTexture; + inputTexture.width = targetTexture.size.width; + inputTexture.height = targetTexture.size.height; + inputTexture.textureId = targetTexture.openGLTexture; + inputTexture.ioSurfaceId = targetTexture.surfaceID; + inputTexture.frameTime = frameTime; + FaceTextureInfo result = [[OlaFaceUnity sharedInstance] render:inputTexture]; + return result.ioSurfaceId; } - (void)yuvTextureReady:(OlaShareTexture *)yTexture uvTexture:(OlaShareTexture *)uvTexture diff --git a/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/templateFace.jpg b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/templateFace.jpg new file mode 100644 index 000000000..15ad13696 Binary files /dev/null and b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/templateFace.jpg differ diff --git a/mediapipe/render/module/beauty/ios/framework/BUILD b/mediapipe/render/module/beauty/ios/framework/BUILD index 2a3d2d8e3..492680b56 100644 --- a/mediapipe/render/module/beauty/ios/framework/BUILD +++ b/mediapipe/render/module/beauty/ios/framework/BUILD @@ -28,7 +28,8 @@ objc_library( "@ios_opencv//:OpencvFramework", ], data = [ - "//mediapipe/graphs/face_mesh:face_mesh_mobile_gpu.binarypb", + # "//mediapipe/graphs/face_mesh:face_mesh_mobile_gpu.binarypb", + "//mediapipe/graphs/face_mesh:face_mesh_mobile_landmark_gpu.binarypb", "//mediapipe/modules/face_detection:face_detection_short_range.tflite", "//mediapipe/modules/face_landmark:face_landmark_with_attention.tflite", "//mediapipe/render/module/beauty:whiten.png", @@ -36,7 +37,7 @@ objc_library( copts = select({ "//mediapipe:apple": [ "-x objective-c++", - "-fobjc-arc", # enable reference-counting + # "-fobjc-arc", # enable reference-counting ], "//conditions:default": [], }), diff --git a/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/project.pbxproj b/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/project.pbxproj index 311823b9e..e2c745940 100644 --- a/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/project.pbxproj +++ b/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/project.pbxproj @@ -15,90 +15,38 @@ FF950301012F72CA00000003 /* GaussianBlurFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1012F72CA00000000 /* GaussianBlurFilter.cpp */; }; FF95030101794B7100000000 /* cpu_op_resolver.cc in tflite */ = {isa = PBXBuildFile; fileRef = 6BF2BEB101794B7100000000 /* cpu_op_resolver.cc */; }; FF95030101794B7100000001 /* cpu_op_resolver.cc in tflite */ = {isa = PBXBuildFile; fileRef = 6BF2BEB101794B7100000000 /* cpu_op_resolver.cc */; }; - FF95030103047E7100000000 /* graph_output_stream.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB103047E7100000000 /* graph_output_stream.cc */; }; - FF95030103047E7100000001 /* graph_output_stream.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB103047E7100000000 /* graph_output_stream.cc */; }; FF950301041C1EB900000000 /* association_norm_rect_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1041C1EB900000000 /* association_norm_rect_calculator.cc */; }; FF950301041C1EB900000001 /* association_norm_rect_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1041C1EB900000000 /* association_norm_rect_calculator.cc */; }; FF950301042A0E6500000000 /* max_pool_argmax.cc in operations */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1042A0E6500000000 /* max_pool_argmax.cc */; }; FF950301042A0E6500000001 /* max_pool_argmax.cc in operations */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1042A0E6500000000 /* max_pool_argmax.cc */; }; - FF950301045C5E6900000000 /* gpu_buffer_storage.cc in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1045C5E6900000000 /* gpu_buffer_storage.cc */; }; - FF950301045C5E6900000001 /* gpu_buffer_storage.cc in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1045C5E6900000000 /* gpu_buffer_storage.cc */; }; - FF95030104BA59E200000000 /* location.cc in formats */ = {isa = PBXBuildFile; fileRef = 6BF2BEB104BA59E200000000 /* location.cc */; }; - FF95030104BA59E200000001 /* location.cc in formats */ = {isa = PBXBuildFile; fileRef = 6BF2BEB104BA59E200000000 /* location.cc */; }; - FF950301051CE57300000000 /* output_stream_shard.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1051CE57300000000 /* output_stream_shard.cc */; }; - FF950301051CE57300000001 /* output_stream_shard.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1051CE57300000000 /* output_stream_shard.cc */; }; - FF95030108D791BD00000000 /* input_stream_handler.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB108D791BD00000000 /* input_stream_handler.cc */; }; - FF95030108D791BD00000001 /* input_stream_handler.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB108D791BD00000000 /* input_stream_handler.cc */; }; - FF950301095EF97200000000 /* fill_packet_set.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1095EF97200000000 /* fill_packet_set.cc */; }; - FF950301095EF97200000001 /* fill_packet_set.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1095EF97200000000 /* fill_packet_set.cc */; }; - FF9503010DAD0F4C00000000 /* timestamp.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB10DAD0F4C00000000 /* timestamp.cc */; }; - FF9503010DAD0F4C00000001 /* timestamp.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB10DAD0F4C00000000 /* timestamp.cc */; }; - FF9503010E7AA6A100000000 /* gl_context.cc in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB10E7AA6A100000000 /* gl_context.cc */; }; - FF9503010E7AA6A100000001 /* gl_context.cc in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB10E7AA6A100000000 /* gl_context.cc */; }; - FF9503010F561D5C00000000 /* status.cc in deps */ = {isa = PBXBuildFile; fileRef = 6BF2BEB10F561D5C00000000 /* status.cc */; }; - FF9503010F561D5C00000001 /* status.cc in deps */ = {isa = PBXBuildFile; fileRef = 6BF2BEB10F561D5C00000000 /* status.cc */; }; FF950301105326A800000000 /* landmarks_to_transform_matrix.cc in operations */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1105326A800000000 /* landmarks_to_transform_matrix.cc */; }; FF950301105326A800000001 /* landmarks_to_transform_matrix.cc in operations */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1105326A800000000 /* landmarks_to_transform_matrix.cc */; }; FF95030112590DCE00000000 /* Source.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB112590DCE00000000 /* Source.cpp */; }; FF95030112590DCE00000001 /* Source.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB112590DCE00000000 /* Source.cpp */; }; FF95030112590DCE00000002 /* Source.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB112590DCE00000000 /* Source.cpp */; }; FF95030112590DCE00000003 /* Source.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB112590DCE00000000 /* Source.cpp */; }; - FF950301125965EB00000000 /* tag_map_helper.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1125965EB00000000 /* tag_map_helper.cc */; }; - FF950301125965EB00000001 /* tag_map_helper.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1125965EB00000000 /* tag_map_helper.cc */; }; - FF95030112EE194500000000 /* calculator_context.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB112EE194500000000 /* calculator_context.cc */; }; - FF95030112EE194500000001 /* calculator_context.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB112EE194500000000 /* calculator_context.cc */; }; - FF95030113274D1100000000 /* status_util.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB113274D1100000000 /* status_util.cc */; }; - FF95030113274D1100000001 /* status_util.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB113274D1100000000 /* status_util.cc */; }; FF9503011335A86600000000 /* OlaFaceUnity.mm in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB11335A86600000000 /* OlaFaceUnity.mm */; }; FF9503011335A86600000001 /* OlaFaceUnity.mm in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB11335A86600000000 /* OlaFaceUnity.mm */; }; - FF95030113D967B800000000 /* collection_item_id.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB113D967B800000000 /* collection_item_id.cc */; }; - FF95030113D967B800000001 /* collection_item_id.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB113D967B800000000 /* collection_item_id.cc */; }; - FF95030114E720D900000000 /* image_to_tensor_converter_opencv.cc in tensor */ = {isa = PBXBuildFile; fileRef = 6BF2BEB114E720D900000000 /* image_to_tensor_converter_opencv.cc */; }; - FF95030114E720D900000001 /* image_to_tensor_converter_opencv.cc in tensor */ = {isa = PBXBuildFile; fileRef = 6BF2BEB114E720D900000000 /* image_to_tensor_converter_opencv.cc */; }; - FF9503011615959C00000000 /* gpu_buffer_multi_pool.cc in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB11615959C00000000 /* gpu_buffer_multi_pool.cc */; }; - FF9503011615959C00000001 /* gpu_buffer_multi_pool.cc in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB11615959C00000000 /* gpu_buffer_multi_pool.cc */; }; - FF9503011622036E00000000 /* options_util.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB11622036E00000000 /* options_util.cc */; }; - FF9503011622036E00000001 /* options_util.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB11622036E00000000 /* options_util.cc */; }; - FF95030116BDCDE400000000 /* calculator_context_manager.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB116BDCDE400000000 /* calculator_context_manager.cc */; }; - FF95030116BDCDE400000001 /* calculator_context_manager.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB116BDCDE400000000 /* calculator_context_manager.cc */; }; - FF950301176DF12500000000 /* fixed_size_input_stream_handler.cc in stream_handler */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1176DF12500000000 /* fixed_size_input_stream_handler.cc */; }; - FF950301176DF12500000001 /* fixed_size_input_stream_handler.cc in stream_handler */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1176DF12500000000 /* fixed_size_input_stream_handler.cc */; }; FF95030118A3906A00000000 /* max_unpooling.cc in operations */ = {isa = PBXBuildFile; fileRef = 6BF2BEB118A3906A00000000 /* max_unpooling.cc */; }; FF95030118A3906A00000001 /* max_unpooling.cc in operations */ = {isa = PBXBuildFile; fileRef = 6BF2BEB118A3906A00000000 /* max_unpooling.cc */; }; FF950301193223CD00000000 /* vec4.cpp in math */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1193223CD00000000 /* vec4.cpp */; }; FF950301193223CD00000001 /* vec4.cpp in math */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1193223CD00000000 /* vec4.cpp */; }; - FF950301196F87BE00000000 /* input_stream_manager.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1196F87BE00000000 /* input_stream_manager.cc */; }; - FF950301196F87BE00000001 /* input_stream_manager.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1196F87BE00000000 /* input_stream_manager.cc */; }; FF9503011979C9A700000000 /* to_image_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB11979C9A700000000 /* to_image_calculator.cc */; }; FF9503011979C9A700000001 /* to_image_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB11979C9A700000000 /* to_image_calculator.cc */; }; FF9503011ABE2CDD00000000 /* thresholding_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB11ABE2CDD00000000 /* thresholding_calculator.cc */; }; FF9503011ABE2CDD00000001 /* thresholding_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB11ABE2CDD00000000 /* thresholding_calculator.cc */; }; FF9503011B77E8CB00000000 /* MPPTimestampConverter.mm in objc */ = {isa = PBXBuildFile; fileRef = 6BF2BEB11B77E8CB00000000 /* MPPTimestampConverter.mm */; }; FF9503011B77E8CB00000001 /* MPPTimestampConverter.mm in objc */ = {isa = PBXBuildFile; fileRef = 6BF2BEB11B77E8CB00000000 /* MPPTimestampConverter.mm */; }; - FF9503011D16CB6700000000 /* pixel_buffer_pool_util.mm in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB11D16CB6700000000 /* pixel_buffer_pool_util.mm */; }; - FF9503011D16CB6700000001 /* pixel_buffer_pool_util.mm in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB11D16CB6700000000 /* pixel_buffer_pool_util.mm */; }; FF9503011EE26A2000000000 /* split_proto_list_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB11EE26A2000000000 /* split_proto_list_calculator.cc */; }; FF9503011EE26A2000000001 /* split_proto_list_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB11EE26A2000000000 /* split_proto_list_calculator.cc */; }; FF950301202F72AF00000000 /* util.cc in objc */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1202F72AF00000000 /* util.cc */; }; FF950301202F72AF00000001 /* util.cc in objc */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1202F72AF00000000 /* util.cc */; }; - FF950301217E6F9B00000000 /* options_field_util.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1217E6F9B00000000 /* options_field_util.cc */; }; - FF950301217E6F9B00000001 /* options_field_util.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1217E6F9B00000000 /* options_field_util.cc */; }; - FF95030121BE9D3000000000 /* tensors_to_detections_calculator.cc in tensor */ = {isa = PBXBuildFile; fileRef = 6BF2BEB121BE9D3000000000 /* tensors_to_detections_calculator.cc */; }; - FF95030121BE9D3000000001 /* tensors_to_detections_calculator.cc in tensor */ = {isa = PBXBuildFile; fileRef = 6BF2BEB121BE9D3000000000 /* tensors_to_detections_calculator.cc */; }; - FF950301224D079A00000000 /* matrix.cc in formats */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1224D079A00000000 /* matrix.cc */; }; - FF950301224D079A00000001 /* matrix.cc in formats */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1224D079A00000000 /* matrix.cc */; }; FF95030122A81B8400000000 /* GLThreadDispatch.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB122A81B8400000000 /* GLThreadDispatch.cpp */; }; FF95030122A81B8400000001 /* GLThreadDispatch.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB122A81B8400000000 /* GLThreadDispatch.cpp */; }; FF95030122A81B8400000002 /* GLThreadDispatch.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB122A81B8400000000 /* GLThreadDispatch.cpp */; }; FF95030122A81B8400000003 /* GLThreadDispatch.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB122A81B8400000000 /* GLThreadDispatch.cpp */; }; - FF9503012418B90200000000 /* scheduler.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB12418B90200000000 /* scheduler.cc */; }; - FF9503012418B90200000001 /* scheduler.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB12418B90200000000 /* scheduler.cc */; }; - FF9503012467AA1E00000000 /* output_stream_manager.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB12467AA1E00000000 /* output_stream_manager.cc */; }; - FF9503012467AA1E00000001 /* output_stream_manager.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB12467AA1E00000000 /* output_stream_manager.cc */; }; FF9503012834F00600000000 /* annotation_overlay_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB12834F00600000000 /* annotation_overlay_calculator.cc */; }; FF9503012834F00600000001 /* annotation_overlay_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB12834F00600000000 /* annotation_overlay_calculator.cc */; }; - FF9503012C20ABC800000000 /* graph_service_manager.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB12C20ABC800000000 /* graph_service_manager.cc */; }; - FF9503012C20ABC800000001 /* graph_service_manager.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB12C20ABC800000000 /* graph_service_manager.cc */; }; FF9503012D3894B500000000 /* GPUImageUtil.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB12D3894B500000000 /* GPUImageUtil.cpp */; }; FF9503012D3894B500000001 /* GPUImageUtil.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB12D3894B500000000 /* GPUImageUtil.cpp */; }; FF9503012FF7D76200000000 /* IOSTarget.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB12FF7D76200000000 /* IOSTarget.cpp */; }; @@ -113,68 +61,34 @@ FF9503013604E74800000003 /* OpipeDispatch.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB13604E74800000000 /* OpipeDispatch.cpp */; }; FF95030136FBEB1A00000000 /* detections_to_render_data_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB136FBEB1A00000000 /* detections_to_render_data_calculator.cc */; }; FF95030136FBEB1A00000001 /* detections_to_render_data_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB136FBEB1A00000000 /* detections_to_render_data_calculator.cc */; }; - FF9503013824086F00000000 /* template_expander.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB13824086F00000000 /* template_expander.cc */; }; - FF9503013824086F00000001 /* template_expander.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB13824086F00000000 /* template_expander.cc */; }; FF950301387C9C0400000000 /* gate_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1387C9C0400000000 /* gate_calculator.cc */; }; FF950301387C9C0400000001 /* gate_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1387C9C0400000000 /* gate_calculator.cc */; }; - FF950301392E8DE400000000 /* switch_mux_calculator.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1392E8DE400000000 /* switch_mux_calculator.cc */; }; - FF950301392E8DE400000001 /* switch_mux_calculator.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1392E8DE400000000 /* switch_mux_calculator.cc */; }; FF9503013B1C97FA00000000 /* rectangle_util.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB13B1C97FA00000000 /* rectangle_util.cc */; }; FF9503013B1C97FA00000001 /* rectangle_util.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB13B1C97FA00000000 /* rectangle_util.cc */; }; - FF9503013C0D6D5B00000000 /* image_to_tensor_utils.cc in tensor */ = {isa = PBXBuildFile; fileRef = 6BF2BEB13C0D6D5B00000000 /* image_to_tensor_utils.cc */; }; - FF9503013C0D6D5B00000001 /* image_to_tensor_utils.cc in tensor */ = {isa = PBXBuildFile; fileRef = 6BF2BEB13C0D6D5B00000000 /* image_to_tensor_utils.cc */; }; FF9503013F7B43FC00000000 /* resource_util_apple.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB13F7B43FC00000000 /* resource_util_apple.cc */; }; FF9503013F7B43FC00000001 /* resource_util_apple.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB13F7B43FC00000000 /* resource_util_apple.cc */; }; FF9503014046CD2C00000000 /* landmarks_to_detection_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB14046CD2C00000000 /* landmarks_to_detection_calculator.cc */; }; FF9503014046CD2C00000001 /* landmarks_to_detection_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB14046CD2C00000000 /* landmarks_to_detection_calculator.cc */; }; - FF950301412CF91400000000 /* ret_check.cc in deps */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1412CF91400000000 /* ret_check.cc */; }; - FF950301412CF91400000001 /* ret_check.cc in deps */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1412CF91400000000 /* ret_check.cc */; }; - FF95030147B18A7C00000000 /* gl_texture_buffer.cc in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB147B18A7C00000000 /* gl_texture_buffer.cc */; }; - FF95030147B18A7C00000001 /* gl_texture_buffer.cc in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB147B18A7C00000000 /* gl_texture_buffer.cc */; }; FF9503014A8EF4EF00000000 /* annotation_renderer.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB14A8EF4EF00000000 /* annotation_renderer.cc */; }; FF9503014A8EF4EF00000001 /* annotation_renderer.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB14A8EF4EF00000000 /* annotation_renderer.cc */; }; - FF9503014CC60F6C00000000 /* calculator_node.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB14CC60F6C00000000 /* calculator_node.cc */; }; - FF9503014CC60F6C00000001 /* calculator_node.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB14CC60F6C00000000 /* calculator_node.cc */; }; - FF9503014EA6318000000000 /* packet_generator_graph.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB14EA6318000000000 /* packet_generator_graph.cc */; }; - FF9503014EA6318000000001 /* packet_generator_graph.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB14EA6318000000000 /* packet_generator_graph.cc */; }; - FF9503014F3A671800000000 /* registration_token.cc in deps */ = {isa = PBXBuildFile; fileRef = 6BF2BEB14F3A671800000000 /* registration_token.cc */; }; - FF9503014F3A671800000001 /* registration_token.cc in deps */ = {isa = PBXBuildFile; fileRef = 6BF2BEB14F3A671800000000 /* registration_token.cc */; }; - FF9503014FE9977200000000 /* registration.cc in deps */ = {isa = PBXBuildFile; fileRef = 6BF2BEB14FE9977200000000 /* registration.cc */; }; - FF9503014FE9977200000001 /* registration.cc in deps */ = {isa = PBXBuildFile; fileRef = 6BF2BEB14FE9977200000000 /* registration.cc */; }; FF950301511B4B0900000000 /* face_landmarks_to_render_data_calculator.cc in calculators */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1511B4B0900000000 /* face_landmarks_to_render_data_calculator.cc */; }; FF950301511B4B0900000001 /* face_landmarks_to_render_data_calculator.cc in calculators */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1511B4B0900000000 /* face_landmarks_to_render_data_calculator.cc */; }; - FF9503015176F86500000000 /* input_stream_shard.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB15176F86500000000 /* input_stream_shard.cc */; }; - FF9503015176F86500000001 /* input_stream_shard.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB15176F86500000000 /* input_stream_shard.cc */; }; FF9503015215FAC800000000 /* landmarks_refinement_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB15215FAC800000000 /* landmarks_refinement_calculator.cc */; }; FF9503015215FAC800000001 /* landmarks_refinement_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB15215FAC800000000 /* landmarks_refinement_calculator.cc */; }; - FF9503015361890F00000000 /* gl_context_eagl.cc in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB15361890F00000000 /* gl_context_eagl.cc */; }; - FF9503015361890F00000001 /* gl_context_eagl.cc in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB15361890F00000000 /* gl_context_eagl.cc */; }; - FF9503015369E8AC00000000 /* packet.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB15369E8AC00000000 /* packet.cc */; }; - FF9503015369E8AC00000001 /* packet.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB15369E8AC00000000 /* packet.cc */; }; FF9503015590E40F00000000 /* vec2.cpp in math */ = {isa = PBXBuildFile; fileRef = 6BF2BEB15590E40F00000000 /* vec2.cpp */; }; FF9503015590E40F00000001 /* vec2.cpp in math */ = {isa = PBXBuildFile; fileRef = 6BF2BEB15590E40F00000000 /* vec2.cpp */; }; FF9503015CAB504600000000 /* math.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB15CAB504600000000 /* math.cpp */; }; FF9503015CAB504600000001 /* math.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB15CAB504600000000 /* math.cpp */; }; - FF9503015F87272300000000 /* profiler_resource_util_ios.cc in profiler */ = {isa = PBXBuildFile; fileRef = 6BF2BEB15F87272300000000 /* profiler_resource_util_ios.cc */; }; - FF9503015F87272300000001 /* profiler_resource_util_ios.cc in profiler */ = {isa = PBXBuildFile; fileRef = 6BF2BEB15F87272300000000 /* profiler_resource_util_ios.cc */; }; - FF950301646C577900000000 /* gl_calculator_helper_impl_common.cc in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1646C577900000000 /* gl_calculator_helper_impl_common.cc */; }; - FF950301646C577900000001 /* gl_calculator_helper_impl_common.cc in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1646C577900000000 /* gl_calculator_helper_impl_common.cc */; }; FF95030165A8D27000000000 /* SourceCamera.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB165A8D27000000000 /* SourceCamera.cpp */; }; FF95030165A8D27000000001 /* SourceCamera.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB165A8D27000000000 /* SourceCamera.cpp */; }; FF95030165A8D27000000002 /* SourceCamera.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB165A8D27000000000 /* SourceCamera.cpp */; }; FF95030165A8D27000000003 /* SourceCamera.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB165A8D27000000000 /* SourceCamera.cpp */; }; - FF950301663742CC00000000 /* switch_container.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1663742CC00000000 /* switch_container.cc */; }; - FF950301663742CC00000001 /* switch_container.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1663742CC00000000 /* switch_container.cc */; }; - FF950301664209C000000000 /* gl_simple_shaders.cc in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1664209C000000000 /* gl_simple_shaders.cc */; }; - FF950301664209C000000001 /* gl_simple_shaders.cc in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1664209C000000000 /* gl_simple_shaders.cc */; }; FF95030166524CD000000000 /* AlphaBlendFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB166524CD000000000 /* AlphaBlendFilter.cpp */; }; FF95030166524CD000000001 /* AlphaBlendFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB166524CD000000000 /* AlphaBlendFilter.cpp */; }; FF95030166524CD000000002 /* AlphaBlendFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB166524CD000000000 /* AlphaBlendFilter.cpp */; }; FF95030166524CD000000003 /* AlphaBlendFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB166524CD000000000 /* AlphaBlendFilter.cpp */; }; FF950301665E250A00000000 /* op_resolver.cc in tflite */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1665E250A00000000 /* op_resolver.cc */; }; FF950301665E250A00000001 /* op_resolver.cc in tflite */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1665E250A00000000 /* op_resolver.cc */; }; - FF950301676E503E00000000 /* legacy_calculator_support.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1676E503E00000000 /* legacy_calculator_support.cc */; }; - FF950301676E503E00000001 /* legacy_calculator_support.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1676E503E00000000 /* legacy_calculator_support.cc */; }; FF9503016909A4FC00000000 /* NSError+util_status.mm in objc */ = {isa = PBXBuildFile; fileRef = 6BF2BEB16909A4FC00000000 /* NSError+util_status.mm */; }; FF9503016909A4FC00000001 /* NSError+util_status.mm in objc */ = {isa = PBXBuildFile; fileRef = 6BF2BEB16909A4FC00000000 /* NSError+util_status.mm */; }; FF950301695F7B1800000000 /* OlaShareTextureFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1695F7B1800000000 /* OlaShareTextureFilter.cpp */; }; @@ -185,24 +99,16 @@ FF9503016988849800000001 /* rect_transformation_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB16988849800000000 /* rect_transformation_calculator.cc */; }; FF9503016A24D81700000000 /* detection_projection_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB16A24D81700000000 /* detection_projection_calculator.cc */; }; FF9503016A24D81700000001 /* detection_projection_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB16A24D81700000000 /* detection_projection_calculator.cc */; }; - FF9503016DADEE7000000000 /* image_frame.cc in formats */ = {isa = PBXBuildFile; fileRef = 6BF2BEB16DADEE7000000000 /* image_frame.cc */; }; - FF9503016DADEE7000000001 /* image_frame.cc in formats */ = {isa = PBXBuildFile; fileRef = 6BF2BEB16DADEE7000000000 /* image_frame.cc */; }; FF9503016E142DC700000000 /* LUTFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB16E142DC700000000 /* LUTFilter.cpp */; }; FF9503016E142DC700000001 /* LUTFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB16E142DC700000000 /* LUTFilter.cpp */; }; FF9503016E142DC700000002 /* LUTFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB16E142DC700000000 /* LUTFilter.cpp */; }; FF9503016E142DC700000003 /* LUTFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB16E142DC700000000 /* LUTFilter.cpp */; }; - FF9503016E1A9C2D00000000 /* status_builder.cc in deps */ = {isa = PBXBuildFile; fileRef = 6BF2BEB16E1A9C2D00000000 /* status_builder.cc */; }; - FF9503016E1A9C2D00000001 /* status_builder.cc in deps */ = {isa = PBXBuildFile; fileRef = 6BF2BEB16E1A9C2D00000000 /* status_builder.cc */; }; FF9503016EE5C41200000000 /* cpu_util.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB16EE5C41200000000 /* cpu_util.cc */; }; FF9503016EE5C41200000001 /* cpu_util.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB16EE5C41200000000 /* cpu_util.cc */; }; FF9503017071A1E200000000 /* ola_graph.cc in common */ = {isa = PBXBuildFile; fileRef = 6BF2BEB17071A1E200000000 /* ola_graph.cc */; }; FF9503017071A1E200000001 /* ola_graph.cc in common */ = {isa = PBXBuildFile; fileRef = 6BF2BEB17071A1E200000000 /* ola_graph.cc */; }; FF95030172ED6A0900000000 /* UnSharpMaskFilter.cpp in filters */ = {isa = PBXBuildFile; fileRef = 6BF2BEB172ED6A0900000000 /* UnSharpMaskFilter.cpp */; }; FF95030172ED6A0900000001 /* UnSharpMaskFilter.cpp in filters */ = {isa = PBXBuildFile; fileRef = 6BF2BEB172ED6A0900000000 /* UnSharpMaskFilter.cpp */; }; - FF9503017354A31A00000000 /* tensors_to_floats_calculator.cc in tensor */ = {isa = PBXBuildFile; fileRef = 6BF2BEB17354A31A00000000 /* tensors_to_floats_calculator.cc */; }; - FF9503017354A31A00000001 /* tensors_to_floats_calculator.cc in tensor */ = {isa = PBXBuildFile; fileRef = 6BF2BEB17354A31A00000000 /* tensors_to_floats_calculator.cc */; }; - FF95030173FC11FB00000000 /* calculator_base.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB173FC11FB00000000 /* calculator_base.cc */; }; - FF95030173FC11FB00000001 /* calculator_base.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB173FC11FB00000000 /* calculator_base.cc */; }; FF95030176651B8000000000 /* OlaContext.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB176651B8000000000 /* OlaContext.cpp */; }; FF95030176651B8000000001 /* OlaContext.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB176651B8000000000 /* OlaContext.cpp */; }; FF95030176651B8000000002 /* OlaContext.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB176651B8000000000 /* OlaContext.cpp */; }; @@ -213,22 +119,12 @@ FF95030178760ADA00000001 /* Filter.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB178760ADA00000000 /* Filter.cpp */; }; FF95030178760ADA00000002 /* Filter.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB178760ADA00000000 /* Filter.cpp */; }; FF95030178760ADA00000003 /* Filter.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB178760ADA00000000 /* Filter.cpp */; }; - FF95030179275DA200000000 /* in_order_output_stream_handler.cc in stream_handler */ = {isa = PBXBuildFile; fileRef = 6BF2BEB179275DA200000000 /* in_order_output_stream_handler.cc */; }; - FF95030179275DA200000001 /* in_order_output_stream_handler.cc in stream_handler */ = {isa = PBXBuildFile; fileRef = 6BF2BEB179275DA200000000 /* in_order_output_stream_handler.cc */; }; - FF95030179C61E6000000000 /* name_util.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB179C61E6000000000 /* name_util.cc */; }; - FF95030179C61E6000000001 /* name_util.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB179C61E6000000000 /* name_util.cc */; }; - FF9503017B0DE23500000000 /* file_helpers.cc in deps */ = {isa = PBXBuildFile; fileRef = 6BF2BEB17B0DE23500000000 /* file_helpers.cc */; }; - FF9503017B0DE23500000001 /* file_helpers.cc in deps */ = {isa = PBXBuildFile; fileRef = 6BF2BEB17B0DE23500000000 /* file_helpers.cc */; }; FF9503017C1D80AC00000000 /* TargetView.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB17C1D80AC00000000 /* TargetView.cpp */; }; FF9503017C1D80AC00000001 /* TargetView.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB17C1D80AC00000000 /* TargetView.cpp */; }; FF9503017C1D80AC00000002 /* TargetView.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB17C1D80AC00000000 /* TargetView.cpp */; }; FF9503017C1D80AC00000003 /* TargetView.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB17C1D80AC00000000 /* TargetView.cpp */; }; FF9503017C35124F00000000 /* transform_tensor_bilinear.cc in operations */ = {isa = PBXBuildFile; fileRef = 6BF2BEB17C35124F00000000 /* transform_tensor_bilinear.cc */; }; FF9503017C35124F00000001 /* transform_tensor_bilinear.cc in operations */ = {isa = PBXBuildFile; fileRef = 6BF2BEB17C35124F00000000 /* transform_tensor_bilinear.cc */; }; - FF9503017CA09C8900000000 /* file_path.cc in deps */ = {isa = PBXBuildFile; fileRef = 6BF2BEB17CA09C8900000000 /* file_path.cc */; }; - FF9503017CA09C8900000001 /* file_path.cc in deps */ = {isa = PBXBuildFile; fileRef = 6BF2BEB17CA09C8900000000 /* file_path.cc */; }; - FF9503017D2972A300000000 /* shader_util.cc in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB17D2972A300000000 /* shader_util.cc */; }; - FF9503017D2972A300000001 /* shader_util.cc in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB17D2972A300000000 /* shader_util.cc */; }; FF9503017F4ECE3500000000 /* GLProgram.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB17F4ECE3500000000 /* GLProgram.cpp */; }; FF9503017F4ECE3500000001 /* GLProgram.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB17F4ECE3500000000 /* GLProgram.cpp */; }; FF9503017F4ECE3500000002 /* GLProgram.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB17F4ECE3500000000 /* GLProgram.cpp */; }; @@ -239,166 +135,54 @@ FF95030182C4C71800000001 /* Framebuffer.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB182C4C71800000000 /* Framebuffer.cpp */; }; FF95030182C4C71800000002 /* Framebuffer.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB182C4C71800000000 /* Framebuffer.cpp */; }; FF95030182C4C71800000003 /* Framebuffer.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB182C4C71800000000 /* Framebuffer.cpp */; }; - FF95030182E727FD00000000 /* packet_generator_wrapper_calculator.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB182E727FD00000000 /* packet_generator_wrapper_calculator.cc */; }; - FF95030182E727FD00000001 /* packet_generator_wrapper_calculator.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB182E727FD00000000 /* packet_generator_wrapper_calculator.cc */; }; FF950301868499C900000000 /* SourceImage.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1868499C900000000 /* SourceImage.cpp */; }; FF950301868499C900000001 /* SourceImage.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1868499C900000000 /* SourceImage.cpp */; }; FF950301868499C900000002 /* SourceImage.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1868499C900000000 /* SourceImage.cpp */; }; FF950301868499C900000003 /* SourceImage.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1868499C900000000 /* SourceImage.cpp */; }; - FF95030186EDD45D00000000 /* MPPMetalUtil.mm in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB186EDD45D00000000 /* MPPMetalUtil.mm */; }; - FF95030186EDD45D00000001 /* MPPMetalUtil.mm in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB186EDD45D00000000 /* MPPMetalUtil.mm */; }; - FF950301892D264500000000 /* image_properties_calculator.cc in image */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1892D264500000000 /* image_properties_calculator.cc */; }; - FF950301892D264500000001 /* image_properties_calculator.cc in image */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1892D264500000000 /* image_properties_calculator.cc */; }; - FF950301894A474700000000 /* threadpool_pthread_impl.cc in deps */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1894A474700000000 /* threadpool_pthread_impl.cc */; }; - FF950301894A474700000001 /* threadpool_pthread_impl.cc in deps */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1894A474700000000 /* threadpool_pthread_impl.cc */; }; FF9503018C3C5D5200000000 /* BilateralFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB18C3C5D5200000000 /* BilateralFilter.cpp */; }; FF9503018C3C5D5200000001 /* BilateralFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB18C3C5D5200000000 /* BilateralFilter.cpp */; }; FF9503018C3C5D5200000002 /* BilateralFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB18C3C5D5200000000 /* BilateralFilter.cpp */; }; FF9503018C3C5D5200000003 /* BilateralFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB18C3C5D5200000000 /* BilateralFilter.cpp */; }; - FF9503018D3D681400000000 /* gpu_buffer.cc in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB18D3D681400000000 /* gpu_buffer.cc */; }; - FF9503018D3D681400000001 /* gpu_buffer.cc in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB18D3D681400000000 /* gpu_buffer.cc */; }; - FF9503018DA33BEA00000000 /* sink.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB18DA33BEA00000000 /* sink.cc */; }; - FF9503018DA33BEA00000001 /* sink.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB18DA33BEA00000000 /* sink.cc */; }; - FF9503018E3AEDD900000000 /* container_util.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB18E3AEDD900000000 /* container_util.cc */; }; - FF9503018E3AEDD900000001 /* container_util.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB18E3AEDD900000000 /* container_util.cc */; }; - FF9503018E62014A00000000 /* calculator_contract.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB18E62014A00000000 /* calculator_contract.cc */; }; - FF9503018E62014A00000001 /* calculator_contract.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB18E62014A00000000 /* calculator_contract.cc */; }; - FF9503018FD5523E00000000 /* tensors_to_landmarks_calculator.cc in tensor */ = {isa = PBXBuildFile; fileRef = 6BF2BEB18FD5523E00000000 /* tensors_to_landmarks_calculator.cc */; }; - FF9503018FD5523E00000001 /* tensors_to_landmarks_calculator.cc in tensor */ = {isa = PBXBuildFile; fileRef = 6BF2BEB18FD5523E00000000 /* tensors_to_landmarks_calculator.cc */; }; - FF950301903FFB7900000000 /* tag_map.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1903FFB7900000000 /* tag_map.cc */; }; - FF950301903FFB7900000001 /* tag_map.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1903FFB7900000000 /* tag_map.cc */; }; FF950301908FF76600000000 /* previous_loopback_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1908FF76600000000 /* previous_loopback_calculator.cc */; }; FF950301908FF76600000001 /* previous_loopback_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1908FF76600000000 /* previous_loopback_calculator.cc */; }; FF9503019158518E00000000 /* landmarks_to_render_data_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB19158518E00000000 /* landmarks_to_render_data_calculator.cc */; }; FF9503019158518E00000001 /* landmarks_to_render_data_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB19158518E00000000 /* landmarks_to_render_data_calculator.cc */; }; - FF9503019280C6F300000000 /* tflite_custom_op_resolver_calculator.cc in tflite */ = {isa = PBXBuildFile; fileRef = 6BF2BEB19280C6F300000000 /* tflite_custom_op_resolver_calculator.cc */; }; - FF9503019280C6F300000001 /* tflite_custom_op_resolver_calculator.cc in tflite */ = {isa = PBXBuildFile; fileRef = 6BF2BEB19280C6F300000000 /* tflite_custom_op_resolver_calculator.cc */; }; - FF9503019343B56C00000000 /* proto_util_lite.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB19343B56C00000000 /* proto_util_lite.cc */; }; - FF9503019343B56C00000001 /* proto_util_lite.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB19343B56C00000000 /* proto_util_lite.cc */; }; - FF95030194ACD3D200000000 /* validate.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB194ACD3D200000000 /* validate.cc */; }; - FF95030194ACD3D200000001 /* validate.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB194ACD3D200000000 /* validate.cc */; }; - FF950301953F4C1900000000 /* executor.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1953F4C1900000000 /* executor.cc */; }; - FF950301953F4C1900000001 /* executor.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1953F4C1900000000 /* executor.cc */; }; FF950301954B39AD00000000 /* non_max_suppression_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1954B39AD00000000 /* non_max_suppression_calculator.cc */; }; FF950301954B39AD00000001 /* non_max_suppression_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1954B39AD00000000 /* non_max_suppression_calculator.cc */; }; FF9503019807610500000000 /* MPPGraph.mm in objc */ = {isa = PBXBuildFile; fileRef = 6BF2BEB19807610500000000 /* MPPGraph.mm */; }; FF9503019807610500000001 /* MPPGraph.mm in objc */ = {isa = PBXBuildFile; fileRef = 6BF2BEB19807610500000000 /* MPPGraph.mm */; }; - FF95030198F8470300000000 /* default_input_stream_handler.cc in stream_handler */ = {isa = PBXBuildFile; fileRef = 6BF2BEB198F8470300000000 /* default_input_stream_handler.cc */; }; - FF95030198F8470300000001 /* default_input_stream_handler.cc in stream_handler */ = {isa = PBXBuildFile; fileRef = 6BF2BEB198F8470300000000 /* default_input_stream_handler.cc */; }; - FF9503019CBDC5A500000000 /* trace_builder.cc in profiler */ = {isa = PBXBuildFile; fileRef = 6BF2BEB19CBDC5A500000000 /* trace_builder.cc */; }; - FF9503019CBDC5A500000001 /* trace_builder.cc in profiler */ = {isa = PBXBuildFile; fileRef = 6BF2BEB19CBDC5A500000000 /* trace_builder.cc */; }; - FF9503019CEF571A00000000 /* tflite_model_calculator.cc in tflite */ = {isa = PBXBuildFile; fileRef = 6BF2BEB19CEF571A00000000 /* tflite_model_calculator.cc */; }; - FF9503019CEF571A00000001 /* tflite_model_calculator.cc in tflite */ = {isa = PBXBuildFile; fileRef = 6BF2BEB19CEF571A00000000 /* tflite_model_calculator.cc */; }; - FF9503019DC0A85E00000000 /* gl_texture_view.cc in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB19DC0A85E00000000 /* gl_texture_view.cc */; }; - FF9503019DC0A85E00000001 /* gl_texture_view.cc in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB19DC0A85E00000000 /* gl_texture_view.cc */; }; - FF9503019F1006A000000000 /* subgraph_expansion.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB19F1006A000000000 /* subgraph_expansion.cc */; }; - FF9503019F1006A000000001 /* subgraph_expansion.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB19F1006A000000000 /* subgraph_expansion.cc */; }; FF950301A24CB7E500000000 /* local_file_contents_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1A24CB7E500000000 /* local_file_contents_calculator.cc */; }; FF950301A24CB7E500000001 /* local_file_contents_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1A24CB7E500000000 /* local_file_contents_calculator.cc */; }; - FF950301A3360C7800000000 /* immediate_input_stream_handler.cc in stream_handler */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1A3360C7800000000 /* immediate_input_stream_handler.cc */; }; - FF950301A3360C7800000001 /* immediate_input_stream_handler.cc in stream_handler */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1A3360C7800000000 /* immediate_input_stream_handler.cc */; }; - FF950301A3BD02C100000000 /* scheduler_queue.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1A3BD02C100000000 /* scheduler_queue.cc */; }; - FF950301A3BD02C100000001 /* scheduler_queue.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1A3BD02C100000000 /* scheduler_queue.cc */; }; FF950301A402CD0400000000 /* face_mesh_module.cc in beauty */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1A402CD0400000000 /* face_mesh_module.cc */; }; FF950301A402CD0400000001 /* face_mesh_module.cc in beauty */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1A402CD0400000000 /* face_mesh_module.cc */; }; - FF950301A54334CD00000000 /* image_opencv.cc in formats */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1A54334CD00000000 /* image_opencv.cc */; }; - FF950301A54334CD00000001 /* image_opencv.cc in formats */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1A54334CD00000000 /* image_opencv.cc */; }; FF950301A7B31D6A00000000 /* mat4.cpp in math */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1A7B31D6A00000000 /* mat4.cpp */; }; FF950301A7B31D6A00000001 /* mat4.cpp in math */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1A7B31D6A00000000 /* mat4.cpp */; }; - FF950301A9411D1C00000000 /* tensor_ahwb.cc in formats */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1A9411D1C00000000 /* tensor_ahwb.cc */; }; - FF950301A9411D1C00000001 /* tensor_ahwb.cc in formats */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1A9411D1C00000000 /* tensor_ahwb.cc */; }; FF950301AB2D5D1300000000 /* begin_loop_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1AB2D5D1300000000 /* begin_loop_calculator.cc */; }; FF950301AB2D5D1300000001 /* begin_loop_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1AB2D5D1300000000 /* begin_loop_calculator.cc */; }; - FF950301ABE2180800000000 /* tensor.cc in formats */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1ABE2180800000000 /* tensor.cc */; }; - FF950301ABE2180800000001 /* tensor.cc in formats */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1ABE2180800000000 /* tensor.cc */; }; - FF950301AC57DDE300000000 /* profiler_resource_util_common.cc in profiler */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1AC57DDE300000000 /* profiler_resource_util_common.cc */; }; - FF950301AC57DDE300000001 /* profiler_resource_util_common.cc in profiler */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1AC57DDE300000000 /* profiler_resource_util_common.cc */; }; FF950301B01194E800000000 /* resource_util.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1B01194E800000000 /* resource_util.cc */; }; FF950301B01194E800000001 /* resource_util.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1B01194E800000000 /* resource_util.cc */; }; FF950301B1BCD15C00000000 /* end_loop_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1B1BCD15C00000000 /* end_loop_calculator.cc */; }; FF950301B1BCD15C00000001 /* end_loop_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1B1BCD15C00000000 /* end_loop_calculator.cc */; }; - FF950301B3D8E01500000000 /* input_side_packet_handler.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1B3D8E01500000000 /* input_side_packet_handler.cc */; }; - FF950301B3D8E01500000001 /* input_side_packet_handler.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1B3D8E01500000000 /* input_side_packet_handler.cc */; }; - FF950301B6988F9900000000 /* image.cc in formats */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1B6988F9900000000 /* image.cc */; }; - FF950301B6988F9900000001 /* image.cc in formats */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1B6988F9900000000 /* image.cc */; }; - FF950301B90D6AD700000000 /* calculator_state.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1B90D6AD700000000 /* calculator_state.cc */; }; - FF950301B90D6AD700000001 /* calculator_state.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1B90D6AD700000000 /* calculator_state.cc */; }; FF950301B9D8F94200000000 /* constant_side_packet_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1B9D8F94200000000 /* constant_side_packet_calculator.cc */; }; FF950301B9D8F94200000001 /* constant_side_packet_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1B9D8F94200000000 /* constant_side_packet_calculator.cc */; }; - FF950301BAE062CD00000000 /* output_stream_handler.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1BAE062CD00000000 /* output_stream_handler.cc */; }; - FF950301BAE062CD00000001 /* output_stream_handler.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1BAE062CD00000000 /* output_stream_handler.cc */; }; - FF950301BAF6D7FB00000000 /* graph_profiler.cc in profiler */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1BAF6D7FB00000000 /* graph_profiler.cc */; }; - FF950301BAF6D7FB00000001 /* graph_profiler.cc in profiler */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1BAF6D7FB00000000 /* graph_profiler.cc */; }; - FF950301C0242BD100000000 /* packet.cc in api2 */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1C0242BD100000000 /* packet.cc */; }; - FF950301C0242BD100000001 /* packet.cc in api2 */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1C0242BD100000000 /* packet.cc */; }; - FF950301C19F2BDB00000000 /* inference_calculator_metal.cc in tensor */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1C19F2BDB00000000 /* inference_calculator_metal.cc */; }; - FF950301C19F2BDB00000001 /* inference_calculator_metal.cc in tensor */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1C19F2BDB00000000 /* inference_calculator_metal.cc */; }; - FF950301C23D5A8900000000 /* gpu_buffer_format.cc in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1C23D5A8900000000 /* gpu_buffer_format.cc */; }; - FF950301C23D5A8900000001 /* gpu_buffer_format.cc in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1C23D5A8900000000 /* gpu_buffer_format.cc */; }; - FF950301C3C01D9000000000 /* gpu_shared_data_internal.cc in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1C3C01D9000000000 /* gpu_shared_data_internal.cc */; }; - FF950301C3C01D9000000001 /* gpu_shared_data_internal.cc in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1C3C01D9000000000 /* gpu_shared_data_internal.cc */; }; - FF950301C42F44E800000000 /* validate_name.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1C42F44E800000000 /* validate_name.cc */; }; - FF950301C42F44E800000001 /* validate_name.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1C42F44E800000000 /* validate_name.cc */; }; - FF950301C471843E00000000 /* MPPGraphGPUData.mm in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1C471843E00000000 /* MPPGraphGPUData.mm */; }; - FF950301C471843E00000001 /* MPPGraphGPUData.mm in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1C471843E00000000 /* MPPGraphGPUData.mm */; }; FF950301C578A56100000000 /* transform_landmarks.cc in operations */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1C578A56100000000 /* transform_landmarks.cc */; }; FF950301C578A56100000001 /* transform_landmarks.cc in operations */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1C578A56100000000 /* transform_landmarks.cc */; }; FF950301CB04A48200000000 /* math_utils.cpp in math */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1CB04A48200000000 /* math_utils.cpp */; }; FF950301CB04A48200000001 /* math_utils.cpp in math */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1CB04A48200000000 /* math_utils.cpp */; }; - FF950301CB59887700000000 /* subgraph.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1CB59887700000000 /* subgraph.cc */; }; - FF950301CB59887700000001 /* subgraph.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1CB59887700000000 /* subgraph.cc */; }; - FF950301CC1CEC7400000000 /* thread_pool_executor.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1CC1CEC7400000000 /* thread_pool_executor.cc */; }; - FF950301CC1CEC7400000001 /* thread_pool_executor.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1CC1CEC7400000000 /* thread_pool_executor.cc */; }; - FF950301CD235A4400000000 /* counter_factory.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1CD235A4400000000 /* counter_factory.cc */; }; - FF950301CD235A4400000001 /* counter_factory.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1CD235A4400000000 /* counter_factory.cc */; }; FF950301CD7D0AD600000000 /* face_mesh_module_imp.cc in beauty */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1CD7D0AD600000000 /* face_mesh_module_imp.cc */; }; FF950301CD7D0AD600000001 /* face_mesh_module_imp.cc in beauty */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1CD7D0AD600000000 /* face_mesh_module_imp.cc */; }; - FF950301CDB6653400000000 /* gl_calculator_helper.cc in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1CDB6653400000000 /* gl_calculator_helper.cc */; }; - FF950301CDB6653400000001 /* gl_calculator_helper.cc in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1CDB6653400000000 /* gl_calculator_helper.cc */; }; - FF950301CF0DF08C00000000 /* graph_tracer.cc in profiler */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1CF0DF08C00000000 /* graph_tracer.cc */; }; - FF950301CF0DF08C00000001 /* graph_tracer.cc in profiler */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1CF0DF08C00000000 /* graph_tracer.cc */; }; - FF950301CF12C0C800000000 /* options_registry.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1CF12C0C800000000 /* options_registry.cc */; }; - FF950301CF12C0C800000001 /* options_registry.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1CF12C0C800000000 /* options_registry.cc */; }; - FF950301D265CD3E00000000 /* output_side_packet_impl.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1D265CD3E00000000 /* output_side_packet_impl.cc */; }; - FF950301D265CD3E00000001 /* output_side_packet_impl.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1D265CD3E00000000 /* output_side_packet_impl.cc */; }; FF950301D2F46D2A00000000 /* clip_vector_size_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1D2F46D2A00000000 /* clip_vector_size_calculator.cc */; }; FF950301D2F46D2A00000001 /* clip_vector_size_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1D2F46D2A00000000 /* clip_vector_size_calculator.cc */; }; - FF950301D36B7DD000000000 /* gpu_service.cc in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1D36B7DD000000000 /* gpu_service.cc */; }; - FF950301D36B7DD000000001 /* gpu_service.cc in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1D36B7DD000000000 /* gpu_service.cc */; }; - FF950301D3E5087100000000 /* image_frame_opencv.cc in formats */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1D3E5087100000000 /* image_frame_opencv.cc */; }; - FF950301D3E5087100000001 /* image_frame_opencv.cc in formats */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1D3E5087100000000 /* image_frame_opencv.cc */; }; - FF950301D73414D800000000 /* image_to_tensor_converter_metal.cc in tensor */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1D73414D800000000 /* image_to_tensor_converter_metal.cc */; }; - FF950301D73414D800000001 /* image_to_tensor_converter_metal.cc in tensor */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1D73414D800000000 /* image_to_tensor_converter_metal.cc */; }; FF950301D796612B00000000 /* Target.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1D796612B00000000 /* Target.cpp */; }; FF950301D796612B00000001 /* Target.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1D796612B00000000 /* Target.cpp */; }; FF950301D796612B00000002 /* Target.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1D796612B00000000 /* Target.cpp */; }; FF950301D796612B00000003 /* Target.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1D796612B00000000 /* Target.cpp */; }; - FF950301D822317800000000 /* options_syntax_util.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1D822317800000000 /* options_syntax_util.cc */; }; - FF950301D822317800000001 /* options_syntax_util.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1D822317800000000 /* options_syntax_util.cc */; }; - FF950301D90020AA00000000 /* gl_context_profiler.cc in profiler */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1D90020AA00000000 /* gl_context_profiler.cc */; }; - FF950301D90020AA00000001 /* gl_context_profiler.cc in profiler */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1D90020AA00000000 /* gl_context_profiler.cc */; }; - FF950301D924684600000000 /* image_to_tensor_calculator.cc in tensor */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1D924684600000000 /* image_to_tensor_calculator.cc */; }; - FF950301D924684600000001 /* image_to_tensor_calculator.cc in tensor */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1D924684600000000 /* image_to_tensor_calculator.cc */; }; FF950301D9E0F97500000000 /* Context.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1D9E0F97500000000 /* Context.cpp */; }; FF950301D9E0F97500000001 /* Context.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1D9E0F97500000000 /* Context.cpp */; }; FF950301D9E0F97500000002 /* Context.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1D9E0F97500000000 /* Context.cpp */; }; FF950301D9E0F97500000003 /* Context.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1D9E0F97500000000 /* Context.cpp */; }; - FF950301DB9D1C2A00000000 /* clock.cc in deps */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1DB9D1C2A00000000 /* clock.cc */; }; - FF950301DB9D1C2A00000001 /* clock.cc in deps */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1DB9D1C2A00000000 /* clock.cc */; }; - FF950301DEE2DFFC00000000 /* switch_demux_calculator.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1DEE2DFFC00000000 /* switch_demux_calculator.cc */; }; - FF950301DEE2DFFC00000001 /* switch_demux_calculator.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1DEE2DFFC00000000 /* switch_demux_calculator.cc */; }; FF950301DF7A0C9B00000000 /* face_mesh_beauty_render.cc in beauty */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1DF7A0C9B00000000 /* face_mesh_beauty_render.cc */; }; FF950301DF7A0C9B00000001 /* face_mesh_beauty_render.cc in beauty */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1DF7A0C9B00000000 /* face_mesh_beauty_render.cc */; }; - FF950301E2CCEE3B00000000 /* MPPMetalHelper.mm in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1E2CCEE3B00000000 /* MPPMetalHelper.mm */; }; - FF950301E2CCEE3B00000001 /* MPPMetalHelper.mm in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1E2CCEE3B00000000 /* MPPMetalHelper.mm */; }; - FF950301E600CBCB00000000 /* inference_calculator_cpu.cc in tensor */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1E600CBCB00000000 /* inference_calculator_cpu.cc */; }; - FF950301E600CBCB00000001 /* inference_calculator_cpu.cc in tensor */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1E600CBCB00000000 /* inference_calculator_cpu.cc */; }; - FF950301E6069BD500000000 /* callback_packet_calculator.cc in internal */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1E6069BD500000000 /* callback_packet_calculator.cc */; }; - FF950301E6069BD500000001 /* callback_packet_calculator.cc in internal */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1E6069BD500000000 /* callback_packet_calculator.cc */; }; - FF950301E63D507200000000 /* gpu_buffer_storage_cv_pixel_buffer.cc in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1E63D507200000000 /* gpu_buffer_storage_cv_pixel_buffer.cc */; }; - FF950301E63D507200000001 /* gpu_buffer_storage_cv_pixel_buffer.cc in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1E63D507200000000 /* gpu_buffer_storage_cv_pixel_buffer.cc */; }; - FF950301E73463BA00000000 /* inference_calculator.cc in tensor */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1E73463BA00000000 /* inference_calculator.cc */; }; - FF950301E73463BA00000001 /* inference_calculator.cc in tensor */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1E73463BA00000000 /* inference_calculator.cc */; }; FF950301E82089DF00000000 /* collection_has_min_size_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1E82089DF00000000 /* collection_has_min_size_calculator.cc */; }; FF950301E82089DF00000001 /* collection_has_min_size_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1E82089DF00000000 /* collection_has_min_size_calculator.cc */; }; FF950301EA081C0700000000 /* landmark_projection_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1EA081C0700000000 /* landmark_projection_calculator.cc */; }; @@ -409,14 +193,6 @@ FF950301EA26099000000001 /* FaceDistortionFilter.cpp in filters */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1EA26099000000000 /* FaceDistortionFilter.cpp */; }; FF950301EAFCD2EB00000000 /* split_vector_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1EAFCD2EB00000000 /* split_vector_calculator.cc */; }; FF950301EAFCD2EB00000001 /* split_vector_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1EAFCD2EB00000000 /* split_vector_calculator.cc */; }; - FF950301EC826FBE00000000 /* packet_type.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1EC826FBE00000000 /* packet_type.cc */; }; - FF950301EC826FBE00000001 /* packet_type.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1EC826FBE00000000 /* packet_type.cc */; }; - FF950301EE3C320400000000 /* monotonic_clock.cc in deps */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1EE3C320400000000 /* monotonic_clock.cc */; }; - FF950301EE3C320400000001 /* monotonic_clock.cc in deps */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1EE3C320400000000 /* monotonic_clock.cc */; }; - FF950301EF2DB52100000000 /* topologicalsorter.cc in deps */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1EF2DB52100000000 /* topologicalsorter.cc */; }; - FF950301EF2DB52100000001 /* topologicalsorter.cc in deps */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1EF2DB52100000000 /* topologicalsorter.cc */; }; - FF950301EFCD23DE00000000 /* node.cc in api2 */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1EFCD23DE00000000 /* node.cc */; }; - FF950301EFCD23DE00000001 /* node.cc in api2 */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1EFCD23DE00000000 /* node.cc */; }; FF950301F00E9A9000000000 /* flow_limiter_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F00E9A9000000000 /* flow_limiter_calculator.cc */; }; FF950301F00E9A9000000001 /* flow_limiter_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F00E9A9000000000 /* flow_limiter_calculator.cc */; }; FF950301F015768000000000 /* GaussianBlurMonoFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F015768000000000 /* GaussianBlurMonoFilter.cpp */; }; @@ -433,24 +209,14 @@ FF950301F3CC262D00000001 /* tflite_model_loader.cc in tflite */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F3CC262D00000000 /* tflite_model_loader.cc */; }; FF950301F3F047F600000000 /* transpose_conv_bias.cc in operations */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F3F047F600000000 /* transpose_conv_bias.cc */; }; FF950301F3F047F600000001 /* transpose_conv_bias.cc in operations */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F3F047F600000000 /* transpose_conv_bias.cc */; }; - FF950301F413FAAB00000000 /* gl_texture_buffer_pool.cc in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F413FAAB00000000 /* gl_texture_buffer_pool.cc */; }; - FF950301F413FAAB00000001 /* gl_texture_buffer_pool.cc in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F413FAAB00000000 /* gl_texture_buffer_pool.cc */; }; - FF950301F500366D00000000 /* ssd_anchors_calculator.cc in tflite */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F500366D00000000 /* ssd_anchors_calculator.cc */; }; - FF950301F500366D00000001 /* ssd_anchors_calculator.cc in tflite */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F500366D00000000 /* ssd_anchors_calculator.cc */; }; - FF950301F50E8E8800000000 /* validated_graph_config.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F50E8E8800000000 /* validated_graph_config.cc */; }; - FF950301F50E8E8800000001 /* validated_graph_config.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F50E8E8800000000 /* validated_graph_config.cc */; }; FF950301F573FC1600000000 /* FilterGroup.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F573FC1600000000 /* FilterGroup.cpp */; }; FF950301F573FC1600000001 /* FilterGroup.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F573FC1600000000 /* FilterGroup.cpp */; }; FF950301F573FC1600000002 /* FilterGroup.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F573FC1600000000 /* FilterGroup.cpp */; }; FF950301F573FC1600000003 /* FilterGroup.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F573FC1600000000 /* FilterGroup.cpp */; }; - FF950301FC0D516900000000 /* calculator_graph.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1FC0D516900000000 /* calculator_graph.cc */; }; - FF950301FC0D516900000001 /* calculator_graph.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1FC0D516900000000 /* calculator_graph.cc */; }; FF950301FCEDD60B00000000 /* CVFramebuffer.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1FCEDD60B00000000 /* CVFramebuffer.cpp */; }; FF950301FCEDD60B00000001 /* CVFramebuffer.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1FCEDD60B00000000 /* CVFramebuffer.cpp */; }; FF950301FCEDD60B00000002 /* CVFramebuffer.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1FCEDD60B00000000 /* CVFramebuffer.cpp */; }; FF950301FCEDD60B00000003 /* CVFramebuffer.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1FCEDD60B00000000 /* CVFramebuffer.cpp */; }; - FF950301FE21B94600000000 /* delegating_executor.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1FE21B94600000000 /* delegating_executor.cc */; }; - FF950301FE21B94600000001 /* delegating_executor.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1FE21B94600000000 /* delegating_executor.cc */; }; FF950301FF68235A00000000 /* dispatch_queue.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1FF68235A00000000 /* dispatch_queue.cpp */; }; FF950301FF68235A00000001 /* dispatch_queue.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1FF68235A00000000 /* dispatch_queue.cpp */; }; FF950301FF68235A00000002 /* dispatch_queue.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1FF68235A00000000 /* dispatch_queue.cpp */; }; @@ -460,41 +226,11 @@ /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 6CA32826019362DD00000000 /* PBXContainerItemProxy */ = { + 6CA3282607268A4900000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 644B9F4C2866F94D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = F2FE34CE019362DC00000000; - }; - 6CA32826043D6EB900000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CE043D6EB800000000; - }; - 6CA328260552442F00000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CE0552442E00000000; - }; - 6CA32826091FB26B00000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CE091FB26A00000000; - }; - 6CA328260BF0E74100000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CE0BF0E74000000000; - }; - 6CA328260F49CEED00000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CE0F49CEEC00000000; + remoteGlobalIDString = F2FE34CE07268A4800000000; }; 6CA328260F58F30900000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -502,17 +238,11 @@ proxyType = 1; remoteGlobalIDString = F2FE34CE0F58F30800000000; }; - 6CA3282612002F2D00000000 /* PBXContainerItemProxy */ = { + 6CA3282610832CE100000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 644B9F4C2866F94D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = F2FE34CE12002F2C00000000; - }; - 6CA32826148AEA4700000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CE148AEA4600000000; + remoteGlobalIDString = F2FE34CE10832CE000000000; }; 6CA328261838F83F00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -520,197 +250,35 @@ proxyType = 1; remoteGlobalIDString = F2FE34CE1838F83E00000000; }; - 6CA32826192D58FB00000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CE192D58FA00000000; - }; 6CA328261AC4218B00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 644B9F4C2866F94D00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = F2FE34CE1AC4218A00000000; }; - 6CA328261BB1D91900000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CE1BB1D91800000000; - }; - 6CA3282620F64D9900000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CE20F64D9800000000; - }; 6CA32826216C14B900000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 644B9F4C2866F94D00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = F2FE34CE216C14B800000000; }; - 6CA3282622E7A19300000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CE22E7A19200000000; - }; - 6CA32826270212EF00000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CE270212EE00000000; - }; - 6CA328262C307FC300000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CE2C307FC200000000; - }; - 6CA328262E1AEAFB00000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CE2E1AEAFA00000000; - }; 6CA328263AD2DEC500000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 644B9F4C2866F94D00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = E9F6BC4B3AD2DEC400000000; }; - 6CA328263CEC689D00000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CE3CEC689C00000000; - }; 6CA328263E081CF900000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 644B9F4C2866F94D00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = F2FE34CE3E081CF800000000; }; - 6CA328264098134F00000000 /* PBXContainerItemProxy */ = { + 6CA328263ED3804B00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 644B9F4C2866F94D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = F2FE34CE4098134E00000000; - }; - 6CA328264581F61300000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CE4581F61200000000; - }; - 6CA3282645BF9C0300000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CE45BF9C0200000000; - }; - 6CA32826486DB1DD00000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CE486DB1DC00000000; - }; - 6CA3282648F8627F00000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CE48F8627E00000000; - }; - 6CA328264A0F047D00000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CE4A0F047C00000000; - }; - 6CA328264EC3F25F00000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CE4EC3F25E00000000; - }; - 6CA328265631D7AD00000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CE5631D7AC00000000; - }; - 6CA328265B9442FD00000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CE5B9442FC00000000; - }; - 6CA328265D24269700000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CE5D24269600000000; - }; - 6CA32826605975F300000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CE605975F200000000; - }; - 6CA3282660F40B8100000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CE60F40B8000000000; - }; - 6CA3282662520DF700000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CE62520DF600000000; - }; - 6CA3282666E95E1300000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CE66E95E1200000000; - }; - 6CA328266729A1D100000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CE6729A1D000000000; - }; - 6CA328266EE3185F00000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CE6EE3185E00000000; - }; - 6CA3282670815F2D00000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CE70815F2C00000000; - }; - 6CA32826717FBD3300000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CE717FBD3200000000; - }; - 6CA3282671A9D19F00000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CE71A9D19E00000000; - }; - 6CA32826721498C500000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CE721498C400000000; + remoteGlobalIDString = F2FE34CE3ED3804A00000000; }; 6CA32826762E872100000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -718,18 +286,6 @@ proxyType = 1; remoteGlobalIDString = F2FE34CE762E872000000000; }; - 6CA3282679D4949700000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CE79D4949600000000; - }; - 6CA328267AADD3C500000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CE7AADD3C400000000; - }; 6CA328267E674A3900000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 644B9F4C2866F94D00000000 /* Project object */; @@ -748,41 +304,17 @@ proxyType = 1; remoteGlobalIDString = F2FE34CE7FF66ACC00000000; }; - 6CA3282680D4856F00000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CE80D4856E00000000; - }; 6CA328268489C38D00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 644B9F4C2866F94D00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = F2FE34CE8489C38C00000000; }; - 6CA328268B4CD5DF00000000 /* PBXContainerItemProxy */ = { + 6CA3282687D26E7500000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 644B9F4C2866F94D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = F2FE34CE8B4CD5DE00000000; - }; - 6CA328268B56A57900000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CE8B56A57800000000; - }; - 6CA328268D69C4A300000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CE8D69C4A200000000; - }; - 6CA3282694BE0ED500000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CE94BE0ED400000000; + remoteGlobalIDString = F2FE34CE87D26E7400000000; }; 6CA3282697A002A700000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -802,41 +334,23 @@ proxyType = 1; remoteGlobalIDString = F2FE34CE9CC89BB200000000; }; - 6CA328269CD320B700000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CE9CD320B600000000; - }; 6CA328269CDDB50D00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 644B9F4C2866F94D00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = F2FE34CE9CDDB50C00000000; }; - 6CA32826A616095700000000 /* PBXContainerItemProxy */ = { + 6CA32826AEE1CD9700000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 644B9F4C2866F94D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = F2FE34CEA616095600000000; + remoteGlobalIDString = F2FE34CEAEE1CD9600000000; }; - 6CA32826AB070CC500000000 /* PBXContainerItemProxy */ = { + 6CA32826B4F98C9F00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 644B9F4C2866F94D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = F2FE34CEAB070CC400000000; - }; - 6CA32826AC80CFF100000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CEAC80CFF000000000; - }; - 6CA32826BEE3CE7500000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CEBEE3CE7400000000; + remoteGlobalIDString = F2FE34CEB4F98C9E00000000; }; 6CA32826C180231D00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -844,23 +358,11 @@ proxyType = 1; remoteGlobalIDString = F2FE34CEC180231C00000000; }; - 6CA32826C7F9A94500000000 /* PBXContainerItemProxy */ = { + 6CA32826C9EF5A9F00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 644B9F4C2866F94D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = F2FE34CEC7F9A94400000000; - }; - 6CA32826CC49096B00000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CECC49096A00000000; - }; - 6CA32826CC596BC100000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CECC596BC000000000; + remoteGlobalIDString = F2FE34CEC9EF5A9E00000000; }; 6CA32826CDF0E1D100000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -868,107 +370,11 @@ proxyType = 1; remoteGlobalIDString = F2FE34CECDF0E1D000000000; }; - 6CA32826D4B7599D00000000 /* PBXContainerItemProxy */ = { + 6CA32826E3255C4300000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 644B9F4C2866F94D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = F2FE34CED4B7599C00000000; - }; - 6CA32826DBAB600300000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CEDBAB600200000000; - }; - 6CA32826DBC0365300000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CEDBC0365200000000; - }; - 6CA32826DBE24C2D00000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CEDBE24C2C00000000; - }; - 6CA32826DDC0B1B300000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CEDDC0B1B200000000; - }; - 6CA32826DF5731D100000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CEDF5731D000000000; - }; - 6CA32826E4F68A4900000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CEE4F68A4800000000; - }; - 6CA32826E60E967B00000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CEE60E967A00000000; - }; - 6CA32826ECB1197500000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CEECB1197400000000; - }; - 6CA32826ED47024D00000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CEED47024C00000000; - }; - 6CA32826EE4F724300000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CEEE4F724200000000; - }; - 6CA32826EF9E075500000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CEEF9E075400000000; - }; - 6CA32826EFD48CB500000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CEEFD48CB400000000; - }; - 6CA32826F164385B00000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CEF164385A00000000; - }; - 6CA32826F437D55300000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CEF437D55200000000; - }; - 6CA32826F43963A700000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CEF43963A600000000; - }; - 6CA32826F84C49B100000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CEF84C49B000000000; + remoteGlobalIDString = F2FE34CEE3255C4200000000; }; /* End PBXContainerItemProxy section */ @@ -977,141 +383,55 @@ 6BF2BEB100939AF800000000 /* lib_idx_clip_vector_size_calculator_C1D859C1_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_clip_vector_size_calculator_C1D859C1_ios_min11.0.a; path = lib_idx_clip_vector_size_calculator_C1D859C1_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1012F72CA00000000 /* GaussianBlurFilter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = GaussianBlurFilter.cpp; path = mediapipe/render/core/GaussianBlurFilter.cpp; sourceTree = ""; }; 6BF2BEB101794B7100000000 /* cpu_op_resolver.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cpu_op_resolver.cc; path = mediapipe/util/tflite/cpu_op_resolver.cc; sourceTree = ""; }; - 6BF2BEB10194F5B200000000 /* lib_idx_image_properties_calculator_gpu_service_56DC0B61_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_properties_calculator_gpu_service_56DC0B61_ios_min11.0.a; path = lib_idx_image_properties_calculator_gpu_service_56DC0B61_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB10278ED3800000000 /* MPPMetalUtil.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MPPMetalUtil.h; path = mediapipe/gpu/MPPMetalUtil.h; sourceTree = ""; }; - 6BF2BEB103047E7100000000 /* graph_output_stream.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graph_output_stream.cc; path = mediapipe/framework/graph_output_stream.cc; sourceTree = ""; }; 6BF2BEB10343A59400000000 /* lib_idx_op_resolver_0836C983_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_op_resolver_0836C983_ios_min15.5.a; path = lib_idx_op_resolver_0836C983_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB103D38A7A00000000 /* options_syntax_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = options_syntax_util.h; path = mediapipe/framework/tool/options_syntax_util.h; sourceTree = ""; }; 6BF2BEB103F9803500000000 /* CFHolder.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CFHolder.h; path = mediapipe/objc/CFHolder.h; sourceTree = ""; }; 6BF2BEB1041C1EB900000000 /* association_norm_rect_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = association_norm_rect_calculator.cc; path = mediapipe/calculators/util/association_norm_rect_calculator.cc; sourceTree = ""; }; 6BF2BEB1042285A000000000 /* lib_idx_math_68C63536_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_math_68C63536_ios_min11.0.a; path = lib_idx_math_68C63536_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1042A0E6500000000 /* max_pool_argmax.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = max_pool_argmax.cc; path = mediapipe/util/tflite/operations/max_pool_argmax.cc; sourceTree = ""; }; - 6BF2BEB1045C5E6900000000 /* gpu_buffer_storage.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gpu_buffer_storage.cc; path = mediapipe/gpu/gpu_buffer_storage.cc; sourceTree = ""; }; - 6BF2BEB104BA59E200000000 /* location.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = location.cc; path = mediapipe/framework/formats/location.cc; sourceTree = ""; }; - 6BF2BEB1051CE57300000000 /* output_stream_shard.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = output_stream_shard.cc; path = mediapipe/framework/output_stream_shard.cc; sourceTree = ""; }; 6BF2BEB105A13E0A00000000 /* lib_idx_mediapipe_framework_ios_C158E828_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_mediapipe_framework_ios_C158E828_ios_min11.0.a; path = lib_idx_mediapipe_framework_ios_C158E828_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB1062DDCBE00000000 /* lib_idx_image_to_tensor_converter_metal_4060E9DC_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_to_tensor_converter_metal_4060E9DC_ios_min11.0.a; path = lib_idx_image_to_tensor_converter_metal_4060E9DC_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB10687813A00000000 /* lib_idx_gl_simple_shaders_CB7AD146_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_gl_simple_shaders_CB7AD146_ios_min11.0.a; path = lib_idx_gl_simple_shaders_CB7AD146_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB106B68BF400000000 /* lib_idx_image_gl_context_gpu_buffer_multi_pool_99A08626_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_gl_context_gpu_buffer_multi_pool_99A08626_ios_min15.5.a; path = lib_idx_image_gl_context_gpu_buffer_multi_pool_99A08626_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB107671C9600000000 /* lib_idx_shader_util_C047EBB4_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_shader_util_C047EBB4_ios_min11.0.a; path = lib_idx_shader_util_C047EBB4_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB10814BACE00000000 /* gpu_shared_data_internal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gpu_shared_data_internal.h; path = mediapipe/gpu/gpu_shared_data_internal.h; sourceTree = ""; }; - 6BF2BEB10884202400000000 /* any_proto.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = any_proto.h; path = mediapipe/framework/port/any_proto.h; sourceTree = ""; }; - 6BF2BEB1089308C200000000 /* lib_idx_pixel_buffer_pool_util_F1B36E38_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_pixel_buffer_pool_util_F1B36E38_ios_min11.0.a; path = lib_idx_pixel_buffer_pool_util_F1B36E38_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB108D791BD00000000 /* input_stream_handler.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = input_stream_handler.cc; path = mediapipe/framework/input_stream_handler.cc; sourceTree = ""; }; - 6BF2BEB1095EF97200000000 /* fill_packet_set.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fill_packet_set.cc; path = mediapipe/framework/tool/fill_packet_set.cc; sourceTree = ""; }; - 6BF2BEB10A15310300000000 /* gpu_buffer_storage_cv_pixel_buffer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gpu_buffer_storage_cv_pixel_buffer.h; path = mediapipe/gpu/gpu_buffer_storage_cv_pixel_buffer.h; sourceTree = ""; }; - 6BF2BEB10A25C8B400000000 /* template_expander.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = template_expander.h; path = mediapipe/framework/tool/template_expander.h; sourceTree = ""; }; - 6BF2BEB10BDFC87C00000000 /* image_frame_opencv.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = image_frame_opencv.h; path = mediapipe/framework/formats/image_frame_opencv.h; sourceTree = ""; }; - 6BF2BEB10DAD0F4C00000000 /* timestamp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = timestamp.cc; path = mediapipe/framework/timestamp.cc; sourceTree = ""; }; - 6BF2BEB10DE77EFE00000000 /* gl_context.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_context.h; path = mediapipe/gpu/gl_context.h; sourceTree = ""; }; - 6BF2BEB10DF9F37000000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/framework/formats/object_detection/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - 6BF2BEB10E7AA6A100000000 /* gl_context.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gl_context.cc; path = mediapipe/gpu/gl_context.cc; sourceTree = ""; }; - 6BF2BEB10EF5627700000000 /* scheduler_queue.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = scheduler_queue.h; path = mediapipe/framework/scheduler_queue.h; sourceTree = ""; }; - 6BF2BEB10F561D5C00000000 /* status.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = status.cc; path = mediapipe/framework/deps/status.cc; sourceTree = ""; }; - 6BF2BEB10F66ADE200000000 /* lib_idx_gpu_buffer_storage_gpu_buffer_format_06E221FF_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_gpu_buffer_storage_gpu_buffer_format_06E221FF_ios_min11.0.a; path = lib_idx_gpu_buffer_storage_gpu_buffer_format_06E221FF_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 6BF2BEB10F69F5F200000000 /* lib_idx_rectangle_util_BC608102_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_rectangle_util_BC608102_ios_min11.0.a; path = lib_idx_rectangle_util_BC608102_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB10F7B42BA00000000 /* BilateralFilter.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = BilateralFilter.hpp; path = mediapipe/render/core/BilateralFilter.hpp; sourceTree = ""; }; 6BF2BEB1105326A800000000 /* landmarks_to_transform_matrix.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = landmarks_to_transform_matrix.cc; path = mediapipe/util/tflite/operations/landmarks_to_transform_matrix.cc; sourceTree = ""; }; - 6BF2BEB1111CDDC900000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/gpu/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - 6BF2BEB1112804BA00000000 /* lib_idx_image_opencv_9E4E8A87_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_opencv_9E4E8A87_ios_min11.0.a; path = lib_idx_image_opencv_9E4E8A87_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB111AB9FD300000000 /* mediapipe_profiling.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = mediapipe_profiling.h; path = mediapipe/framework/mediapipe_profiling.h; sourceTree = ""; }; - 6BF2BEB112136E6200000000 /* vector.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = vector.h; path = mediapipe/framework/deps/vector.h; sourceTree = ""; }; + 6BF2BEB110B1FD6E00000000 /* lib_idx_util_C76AD427_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_util_C76AD427_ios_min15.5.a; path = lib_idx_util_C76AD427_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 6BF2BEB1119EB78500000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/modules/face_detection/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; 6BF2BEB1124813CB00000000 /* landmarks_refinement_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = landmarks_refinement_calculator.h; path = mediapipe/calculators/util/landmarks_refinement_calculator.h; sourceTree = ""; }; 6BF2BEB11251C84200000000 /* resource_util_internal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = resource_util_internal.h; path = mediapipe/util/resource_util_internal.h; sourceTree = ""; }; 6BF2BEB112590DCE00000000 /* Source.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Source.cpp; path = mediapipe/render/core/Source.cpp; sourceTree = ""; }; - 6BF2BEB1125965EB00000000 /* tag_map_helper.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tag_map_helper.cc; path = mediapipe/framework/tool/tag_map_helper.cc; sourceTree = ""; }; - 6BF2BEB112692A1500000000 /* trace_buffer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = trace_buffer.h; path = mediapipe/framework/profiler/trace_buffer.h; sourceTree = ""; }; - 6BF2BEB112EE194500000000 /* calculator_context.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = calculator_context.cc; path = mediapipe/framework/calculator_context.cc; sourceTree = ""; }; - 6BF2BEB1130933FA00000000 /* canonical_errors.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = canonical_errors.h; path = mediapipe/framework/deps/canonical_errors.h; sourceTree = ""; }; - 6BF2BEB113274D1100000000 /* status_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = status_util.cc; path = mediapipe/framework/tool/status_util.cc; sourceTree = ""; }; 6BF2BEB11335A86600000000 /* OlaFaceUnity.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = OlaFaceUnity.mm; path = mediapipe/render/module/beauty/ios/framework/OlaFaceUnity.mm; sourceTree = ""; }; - 6BF2BEB11338C3A000000000 /* lib_idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min15.5.a; path = lib_idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB113D967B800000000 /* collection_item_id.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = collection_item_id.cc; path = mediapipe/framework/collection_item_id.cc; sourceTree = ""; }; - 6BF2BEB114E720D900000000 /* image_to_tensor_converter_opencv.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = image_to_tensor_converter_opencv.cc; path = mediapipe/calculators/tensor/image_to_tensor_converter_opencv.cc; sourceTree = ""; }; 6BF2BEB1150335A300000000 /* annotation_renderer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = annotation_renderer.h; path = mediapipe/util/annotation_renderer.h; sourceTree = ""; }; - 6BF2BEB11548219400000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/calculators/tflite/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - 6BF2BEB115582B1B00000000 /* matrix.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = matrix.h; path = mediapipe/framework/formats/matrix.h; sourceTree = ""; }; 6BF2BEB115ABCCEE00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/render/module/beauty/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; 6BF2BEB115B04C8C00000000 /* lib_idx_split_vector_calculator_ED1EBC41_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_split_vector_calculator_ED1EBC41_ios_min11.0.a; path = lib_idx_split_vector_calculator_ED1EBC41_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB115B4CC0800000000 /* lib_idx_pixel_buffer_pool_util_F1B36E38_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_pixel_buffer_pool_util_F1B36E38_ios_min15.5.a; path = lib_idx_pixel_buffer_pool_util_F1B36E38_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB1160C2A4100000000 /* thread_pool_executor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = thread_pool_executor.h; path = mediapipe/framework/thread_pool_executor.h; sourceTree = ""; }; - 6BF2BEB1160DA88A00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/framework/api2/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - 6BF2BEB11615959C00000000 /* gpu_buffer_multi_pool.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gpu_buffer_multi_pool.cc; path = mediapipe/gpu/gpu_buffer_multi_pool.cc; sourceTree = ""; }; - 6BF2BEB11622036E00000000 /* options_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = options_util.cc; path = mediapipe/framework/tool/options_util.cc; sourceTree = ""; }; 6BF2BEB116275C2700000000 /* Filter.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = Filter.hpp; path = mediapipe/render/core/Filter.hpp; sourceTree = ""; }; 6BF2BEB1164B2B0E00000000 /* max_unpooling.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = max_unpooling.h; path = mediapipe/util/tflite/operations/max_unpooling.h; sourceTree = ""; }; 6BF2BEB116536C5000000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/render/module/beauty/ios/framework/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - 6BF2BEB116BDCDE400000000 /* calculator_context_manager.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = calculator_context_manager.cc; path = mediapipe/framework/calculator_context_manager.cc; sourceTree = ""; }; - 6BF2BEB1176DF12500000000 /* fixed_size_input_stream_handler.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fixed_size_input_stream_handler.cc; path = mediapipe/framework/stream_handler/fixed_size_input_stream_handler.cc; sourceTree = ""; }; 6BF2BEB1179A317600000000 /* vec3.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = vec3.hpp; path = mediapipe/render/core/math/vec3.hpp; sourceTree = ""; }; - 6BF2BEB1179C883F00000000 /* source_location.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = source_location.h; path = mediapipe/framework/deps/source_location.h; sourceTree = ""; }; - 6BF2BEB11804FA3400000000 /* collection_item_id.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = collection_item_id.h; path = mediapipe/framework/collection_item_id.h; sourceTree = ""; }; + 6BF2BEB1185F0D7700000000 /* face_landmark_with_attention.tflite */ = {isa = PBXFileReference; lastKnownFileType = dyn.age81k3xqrf4gn; name = face_landmark_with_attention.tflite; path = mediapipe/modules/face_landmark/face_landmark_with_attention.tflite; sourceTree = ""; }; 6BF2BEB1186C668100000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/util/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; 6BF2BEB1186E3A4700000000 /* vec2.inl */ = {isa = PBXFileReference; lastKnownFileType = "public.c-plus-plus-inline-header"; name = vec2.inl; path = mediapipe/render/core/math/vec2.inl; sourceTree = ""; }; 6BF2BEB118A3906A00000000 /* max_unpooling.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = max_unpooling.cc; path = mediapipe/util/tflite/operations/max_unpooling.cc; sourceTree = ""; }; - 6BF2BEB118FBE5EA00000000 /* numbers.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = numbers.h; path = mediapipe/framework/port/numbers.h; sourceTree = ""; }; - 6BF2BEB11925DF0400000000 /* lib_idx_tensors_to_detections_calculator_39B944A4_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tensors_to_detections_calculator_39B944A4_ios_min15.5.a; path = lib_idx_tensors_to_detections_calculator_39B944A4_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1193223CD00000000 /* vec4.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vec4.cpp; path = mediapipe/render/core/math/vec4.cpp; sourceTree = ""; }; - 6BF2BEB1196F87BE00000000 /* input_stream_manager.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = input_stream_manager.cc; path = mediapipe/framework/input_stream_manager.cc; sourceTree = ""; }; 6BF2BEB11979C9A700000000 /* to_image_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = to_image_calculator.cc; path = mediapipe/calculators/util/to_image_calculator.cc; sourceTree = ""; }; 6BF2BEB11ABE2CDD00000000 /* thresholding_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = thresholding_calculator.cc; path = mediapipe/calculators/util/thresholding_calculator.cc; sourceTree = ""; }; 6BF2BEB11B77E8CB00000000 /* MPPTimestampConverter.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = MPPTimestampConverter.mm; path = mediapipe/objc/MPPTimestampConverter.mm; sourceTree = ""; }; - 6BF2BEB11C310D9F00000000 /* 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 = ""; }; 6BF2BEB11C6B16F100000000 /* cpu_op_resolver.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = cpu_op_resolver.h; path = mediapipe/util/tflite/cpu_op_resolver.h; sourceTree = ""; }; - 6BF2BEB11C7B0BA600000000 /* proto_ns.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = proto_ns.h; path = mediapipe/framework/port/proto_ns.h; sourceTree = ""; }; - 6BF2BEB11CA1FEB600000000 /* lib_idx_MPPGraphGPUData_39C9C70C_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_MPPGraphGPUData_39C9C70C_ios_min11.0.a; path = lib_idx_MPPGraphGPUData_39C9C70C_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB11D16CB6700000000 /* pixel_buffer_pool_util.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = pixel_buffer_pool_util.mm; path = mediapipe/gpu/pixel_buffer_pool_util.mm; sourceTree = ""; }; - 6BF2BEB11D502F6200000000 /* output_side_packet.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = output_side_packet.h; path = mediapipe/framework/output_side_packet.h; sourceTree = ""; }; - 6BF2BEB11DC5DE2F00000000 /* opencv_imgproc_inc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = opencv_imgproc_inc.h; path = mediapipe/framework/port/opencv_imgproc_inc.h; sourceTree = ""; }; 6BF2BEB11EE26A2000000000 /* split_proto_list_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = split_proto_list_calculator.cc; path = mediapipe/calculators/core/split_proto_list_calculator.cc; sourceTree = ""; }; - 6BF2BEB11F031A2300000000 /* packet_set.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = packet_set.h; path = mediapipe/framework/packet_set.h; sourceTree = ""; }; 6BF2BEB1202F72AF00000000 /* util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = util.cc; path = mediapipe/objc/util.cc; sourceTree = ""; }; - 6BF2BEB120A93DB300000000 /* map_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = map_util.h; path = mediapipe/framework/port/map_util.h; sourceTree = ""; }; 6BF2BEB120CC110A00000000 /* lib_idx_begin_loop_calculator_50B5F6A2_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_begin_loop_calculator_50B5F6A2_ios_min15.5.a; path = lib_idx_begin_loop_calculator_50B5F6A2_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB120E3AD2000000000 /* image_to_tensor_utils.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = image_to_tensor_utils.h; path = mediapipe/calculators/tensor/image_to_tensor_utils.h; sourceTree = ""; }; - 6BF2BEB121631CB300000000 /* 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 = ""; }; - 6BF2BEB1217E6F9B00000000 /* options_field_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = options_field_util.cc; path = mediapipe/framework/tool/options_field_util.cc; sourceTree = ""; }; - 6BF2BEB121BE9D3000000000 /* tensors_to_detections_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tensors_to_detections_calculator.cc; path = mediapipe/calculators/tensor/tensors_to_detections_calculator.cc; sourceTree = ""; }; - 6BF2BEB121C1C8AF00000000 /* tuple.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = tuple.h; path = mediapipe/framework/api2/tuple.h; sourceTree = ""; }; - 6BF2BEB121CFE74A00000000 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_87112A87_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_87112A87_ios_min15.5.a; path = lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_87112A87_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB121F5530600000000 /* lib_idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min11.0.a; path = lib_idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB1224D079A00000000 /* matrix.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = matrix.cc; path = mediapipe/framework/formats/matrix.cc; sourceTree = ""; }; 6BF2BEB122A81B8400000000 /* GLThreadDispatch.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = GLThreadDispatch.cpp; path = mediapipe/render/core/GLThreadDispatch.cpp; sourceTree = ""; }; - 6BF2BEB122C19C9500000000 /* legacy_calculator_support.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = legacy_calculator_support.h; path = mediapipe/framework/legacy_calculator_support.h; sourceTree = ""; }; - 6BF2BEB12418B90200000000 /* scheduler.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = scheduler.cc; path = mediapipe/framework/scheduler.cc; sourceTree = ""; }; - 6BF2BEB12467AA1E00000000 /* output_stream_manager.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = output_stream_manager.cc; path = mediapipe/framework/output_stream_manager.cc; sourceTree = ""; }; 6BF2BEB1258576A800000000 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min15.5.a; path = lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB125F3DD4600000000 /* sharded_map.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = sharded_map.h; path = mediapipe/framework/profiler/sharded_map.h; sourceTree = ""; }; 6BF2BEB126D0D2E600000000 /* lib_idx_detection_projection_calculator_6C26583E_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_detection_projection_calculator_6C26583E_ios_min11.0.a; path = lib_idx_detection_projection_calculator_6C26583E_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB126DCFA4D00000000 /* gl_thread_collector.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_thread_collector.h; path = mediapipe/gpu/gl_thread_collector.h; sourceTree = ""; }; 6BF2BEB1272635B000000000 /* transpose_conv_bias.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = transpose_conv_bias.h; path = mediapipe/util/tflite/operations/transpose_conv_bias.h; sourceTree = ""; }; - 6BF2BEB1277533FB00000000 /* status.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = status.h; path = mediapipe/framework/deps/status.h; sourceTree = ""; }; - 6BF2BEB12780166200000000 /* packet.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = packet.h; path = mediapipe/framework/packet.h; sourceTree = ""; }; - 6BF2BEB12828C8A800000000 /* mathutil.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = mathutil.h; path = mediapipe/framework/deps/mathutil.h; sourceTree = ""; }; 6BF2BEB12834F00600000000 /* annotation_overlay_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = annotation_overlay_calculator.cc; path = mediapipe/calculators/util/annotation_overlay_calculator.cc; sourceTree = ""; }; - 6BF2BEB128904C9100000000 /* graph_service_manager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = graph_service_manager.h; path = mediapipe/framework/graph_service_manager.h; sourceTree = ""; }; - 6BF2BEB128F9C32900000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/framework/stream_handler/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; 6BF2BEB1290D963D00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/graphs/face_mesh/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - 6BF2BEB1296CDA0C00000000 /* safe_int.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = safe_int.h; path = mediapipe/framework/deps/safe_int.h; sourceTree = ""; }; - 6BF2BEB12C20ABC800000000 /* graph_service_manager.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graph_service_manager.cc; path = mediapipe/framework/graph_service_manager.cc; sourceTree = ""; }; + 6BF2BEB12B5DD40E00000000 /* lib_idx_previous_loopback_calculator_header_util_D60754F6_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_previous_loopback_calculator_header_util_D60754F6_ios_min15.5.a; path = lib_idx_previous_loopback_calculator_header_util_D60754F6_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB12CA286D000000000 /* lib_idx_op_resolver_0836C983_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_op_resolver_0836C983_ios_min11.0.a; path = lib_idx_op_resolver_0836C983_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB12CFA860400000000 /* lib_idx_profiler_resource_util_35C39BA3_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_profiler_resource_util_35C39BA3_ios_min15.5.a; path = lib_idx_profiler_resource_util_35C39BA3_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB12D3894B500000000 /* GPUImageUtil.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = GPUImageUtil.cpp; path = mediapipe/render/core/GPUImageUtil.cpp; sourceTree = ""; }; 6BF2BEB12D7AE34A00000000 /* SourceImage.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = SourceImage.hpp; path = mediapipe/render/core/SourceImage.hpp; sourceTree = ""; }; - 6BF2BEB12D97516200000000 /* lib_idx_location_image_frame_opencv_D6F50F87_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_location_image_frame_opencv_D6F50F87_ios_min11.0.a; path = lib_idx_location_image_frame_opencv_D6F50F87_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB12DC1337600000000 /* gl_texture_view.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_texture_view.h; path = mediapipe/gpu/gl_texture_view.h; sourceTree = ""; }; - 6BF2BEB12DC641F500000000 /* calculator_state.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = calculator_state.h; path = mediapipe/framework/calculator_state.h; sourceTree = ""; }; - 6BF2BEB12DEED72900000000 /* map_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = map_util.h; path = mediapipe/framework/deps/map_util.h; sourceTree = ""; }; 6BF2BEB12E009AA400000000 /* lib_idx_resource_util_C5C5DB93_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_resource_util_C5C5DB93_ios_min15.5.a; path = lib_idx_resource_util_C5C5DB93_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB12E332C1B00000000 /* Info.plist */ = {isa = PBXFileReference; explicitFileType = text.plist; name = Info.plist; path = "FaceUnityFramework.xcodeproj/.tulsi/tulsi-execution-root/bazel-tulsi-includes/x/x/mediapipe/render/module/beauty/ios/framework/OlaFaceUnityFramework-intermediates/Info.plist"; sourceTree = SOURCE_ROOT; }; - 6BF2BEB12E3487DE00000000 /* lib_idx_scheduler_queue_364511B6_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_scheduler_queue_364511B6_ios_min15.5.a; path = lib_idx_scheduler_queue_364511B6_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB12E3CBFE400000000 /* lib_idx_gpu_buffer_storage_gpu_buffer_format_06E221FF_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_gpu_buffer_storage_gpu_buffer_format_06E221FF_ios_min15.5.a; path = lib_idx_gpu_buffer_storage_gpu_buffer_format_06E221FF_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 6BF2BEB12E6EE1D200000000 /* lib_idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min11.0.a; path = lib_idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB12FF7D76200000000 /* IOSTarget.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = IOSTarget.cpp; path = mediapipe/render/core/IOSTarget.cpp; sourceTree = ""; }; - 6BF2BEB13079E83D00000000 /* gpu_buffer_multi_pool.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gpu_buffer_multi_pool.h; path = mediapipe/gpu/gpu_buffer_multi_pool.h; sourceTree = ""; }; - 6BF2BEB1310526FE00000000 /* lib_idx_image_to_tensor_calculator_FF109E68_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_to_tensor_calculator_FF109E68_ios_min15.5.a; path = lib_idx_image_to_tensor_calculator_FF109E68_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB131C8E4F500000000 /* contract.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = contract.h; path = mediapipe/framework/api2/contract.h; sourceTree = ""; }; - 6BF2BEB131F66BEE00000000 /* graph_output_stream.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = graph_output_stream.h; path = mediapipe/framework/graph_output_stream.h; sourceTree = ""; }; - 6BF2BEB132036C9800000000 /* gl_calculator_helper_impl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_calculator_helper_impl.h; path = mediapipe/gpu/gl_calculator_helper_impl.h; sourceTree = ""; }; - 6BF2BEB1329B39B200000000 /* lib_idx_image_to_tensor_calculator_FF109E68_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_to_tensor_calculator_FF109E68_ios_min11.0.a; path = lib_idx_image_to_tensor_calculator_FF109E68_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 6BF2BEB1311D3FFA00000000 /* lib_idx_cpu_util_C9677097_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_cpu_util_C9677097_ios_min11.0.a; path = lib_idx_cpu_util_C9677097_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB13300B09700000000 /* BilateralAdjustFilter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = BilateralAdjustFilter.cpp; path = mediapipe/render/module/beauty/filters/BilateralAdjustFilter.cpp; sourceTree = ""; }; 6BF2BEB13382907A00000000 /* face_mesh_beauty_render.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = face_mesh_beauty_render.h; path = mediapipe/render/module/beauty/face_mesh_beauty_render.h; sourceTree = ""; }; 6BF2BEB1338459AD00000000 /* mat4.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = mat4.hpp; path = mediapipe/render/core/math/mat4.hpp; sourceTree = ""; }; @@ -1119,572 +439,191 @@ 6BF2BEB135330E2600000000 /* lib_idx_cpu_op_resolver_519CBACD_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_cpu_op_resolver_519CBACD_ios_min15.5.a; path = lib_idx_cpu_op_resolver_519CBACD_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB13604E74800000000 /* OpipeDispatch.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = OpipeDispatch.cpp; path = mediapipe/render/core/OpipeDispatch.cpp; sourceTree = ""; }; 6BF2BEB136FBEB1A00000000 /* detections_to_render_data_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = detections_to_render_data_calculator.cc; path = mediapipe/calculators/util/detections_to_render_data_calculator.cc; sourceTree = ""; }; - 6BF2BEB137525DD000000000 /* calculator_graph.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = calculator_graph.h; path = mediapipe/framework/calculator_graph.h; sourceTree = ""; }; - 6BF2BEB137DE7A3C00000000 /* image_to_tensor_converter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = image_to_tensor_converter.h; path = mediapipe/calculators/tensor/image_to_tensor_converter.h; sourceTree = ""; }; - 6BF2BEB13824086F00000000 /* template_expander.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = template_expander.cc; path = mediapipe/framework/tool/template_expander.cc; sourceTree = ""; }; 6BF2BEB1387C9C0400000000 /* gate_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gate_calculator.cc; path = mediapipe/calculators/core/gate_calculator.cc; sourceTree = ""; }; - 6BF2BEB1387DEC3400000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/calculators/tensor/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - 6BF2BEB138ACA16200000000 /* lib_idx_inference_calculator_interface_inference_calculator_cpu_EC7FC897_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_inference_calculator_interface_inference_calculator_cpu_EC7FC897_ios_min11.0.a; path = lib_idx_inference_calculator_interface_inference_calculator_cpu_EC7FC897_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB1392E8DE400000000 /* switch_mux_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = switch_mux_calculator.cc; path = mediapipe/framework/tool/switch_mux_calculator.cc; sourceTree = ""; }; 6BF2BEB1398051ED00000000 /* cpu_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = cpu_util.h; path = mediapipe/util/cpu_util.h; sourceTree = ""; }; 6BF2BEB13A3761C900000000 /* OlaFaceUnity.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = OlaFaceUnity.h; path = mediapipe/render/module/beauty/ios/framework/OlaFaceUnity.h; sourceTree = ""; }; 6BF2BEB13B1C97FA00000000 /* rectangle_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = rectangle_util.cc; path = mediapipe/util/rectangle_util.cc; sourceTree = ""; }; - 6BF2BEB13B97637C00000000 /* lib_idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min11.0.a; path = lib_idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB13BB0D77500000000 /* transform_landmarks.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = transform_landmarks.h; path = mediapipe/util/tflite/operations/transform_landmarks.h; sourceTree = ""; }; - 6BF2BEB13C0D6D5B00000000 /* image_to_tensor_utils.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = image_to_tensor_utils.cc; path = mediapipe/calculators/tensor/image_to_tensor_utils.cc; sourceTree = ""; }; - 6BF2BEB13C41172600000000 /* lib_idx_MPPMetalUtil_455751A0_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_MPPMetalUtil_455751A0_ios_min11.0.a; path = lib_idx_MPPMetalUtil_455751A0_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB13C8D040500000000 /* circular_buffer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = circular_buffer.h; path = mediapipe/framework/profiler/circular_buffer.h; sourceTree = ""; }; - 6BF2BEB13D92A50E00000000 /* lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_717D4ABA_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_717D4ABA_ios_min15.5.a; path = lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_717D4ABA_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 6BF2BEB13E6E92F600000000 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; 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_200517DA_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_200517DA_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB13EDD2CC300000000 /* NSError+util_status.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "NSError+util_status.h"; path = "mediapipe/objc/NSError+util_status.h"; sourceTree = ""; }; - 6BF2BEB13F32CBF200000000 /* lib_idx_MPPMetalUtil_455751A0_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_MPPMetalUtil_455751A0_ios_min15.5.a; path = lib_idx_MPPMetalUtil_455751A0_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB13F6F842500000000 /* Framebuffer.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = Framebuffer.hpp; path = mediapipe/render/core/Framebuffer.hpp; sourceTree = ""; }; 6BF2BEB13F7B43FC00000000 /* resource_util_apple.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = resource_util_apple.cc; path = mediapipe/util/resource_util_apple.cc; sourceTree = ""; }; - 6BF2BEB13F7DE84500000000 /* port.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = port.h; path = mediapipe/framework/api2/port.h; sourceTree = ""; }; 6BF2BEB13FC2509200000000 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min15.5.a; path = lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB14046CD2C00000000 /* landmarks_to_detection_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = landmarks_to_detection_calculator.cc; path = mediapipe/calculators/util/landmarks_to_detection_calculator.cc; sourceTree = ""; }; - 6BF2BEB140A1AF9000000000 /* lib_idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min11.0.a; path = lib_idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB141065C4600000000 /* gl_calculator_helper.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_calculator_helper.h; path = mediapipe/gpu/gl_calculator_helper.h; sourceTree = ""; }; - 6BF2BEB1412CF91400000000 /* ret_check.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ret_check.cc; path = mediapipe/framework/deps/ret_check.cc; sourceTree = ""; }; - 6BF2BEB143C858F500000000 /* registration.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = registration.h; path = mediapipe/framework/deps/registration.h; sourceTree = ""; }; - 6BF2BEB146128B7C00000000 /* lib_idx_image_to_tensor_converter_opencv_22266321_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_to_tensor_converter_opencv_22266321_ios_min15.5.a; path = lib_idx_image_to_tensor_converter_opencv_22266321_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB14635725B00000000 /* gpu_buffer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gpu_buffer.h; path = mediapipe/gpu/gpu_buffer.h; sourceTree = ""; }; 6BF2BEB146CB30E900000000 /* landmarks_to_transform_matrix.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = landmarks_to_transform_matrix.h; path = mediapipe/util/tflite/operations/landmarks_to_transform_matrix.h; sourceTree = ""; }; - 6BF2BEB147B18A7C00000000 /* gl_texture_buffer.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gl_texture_buffer.cc; path = mediapipe/gpu/gl_texture_buffer.cc; sourceTree = ""; }; - 6BF2BEB147F7AD0200000000 /* lib_idx_tensor_7303F5EA_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tensor_7303F5EA_ios_min15.5.a; path = lib_idx_tensor_7303F5EA_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB1481B3A4200000000 /* lib_idx_inference_calculator_metal_9450E505_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_inference_calculator_metal_9450E505_ios_min11.0.a; path = lib_idx_inference_calculator_metal_9450E505_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB148CB541600000000 /* lib_idx_inference_calculator_metal_9450E505_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_inference_calculator_metal_9450E505_ios_min15.5.a; path = lib_idx_inference_calculator_metal_9450E505_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB14A8EF4EF00000000 /* annotation_renderer.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = annotation_renderer.cc; path = mediapipe/util/annotation_renderer.cc; sourceTree = ""; }; - 6BF2BEB14AB5830800000000 /* subgraph.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = subgraph.h; path = mediapipe/framework/subgraph.h; sourceTree = ""; }; - 6BF2BEB14C3F304600000000 /* validate_name.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = validate_name.h; path = mediapipe/framework/tool/validate_name.h; sourceTree = ""; }; - 6BF2BEB14C89FC5100000000 /* tensor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = tensor.h; path = mediapipe/framework/formats/tensor.h; sourceTree = ""; }; - 6BF2BEB14CC60F6C00000000 /* calculator_node.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = calculator_node.cc; path = mediapipe/framework/calculator_node.cc; sourceTree = ""; }; - 6BF2BEB14D3C632E00000000 /* lib_idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min15.5.a; path = lib_idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB14D3CBB3200000000 /* GLThreadDispatch.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = GLThreadDispatch.h; path = mediapipe/render/core/GLThreadDispatch.h; sourceTree = ""; }; 6BF2BEB14DABC5B200000000 /* vec2.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = vec2.hpp; path = mediapipe/render/core/math/vec2.hpp; sourceTree = ""; }; 6BF2BEB14E2C8C7E00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/render/core/math/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - 6BF2BEB14E78690800000000 /* lib_idx_image_to_tensor_converter_metal_4060E9DC_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_to_tensor_converter_metal_4060E9DC_ios_min15.5.a; path = lib_idx_image_to_tensor_converter_metal_4060E9DC_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB14EA6318000000000 /* packet_generator_graph.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = packet_generator_graph.cc; path = mediapipe/framework/packet_generator_graph.cc; sourceTree = ""; }; - 6BF2BEB14F3A671800000000 /* registration_token.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = registration_token.cc; path = mediapipe/framework/deps/registration_token.cc; sourceTree = ""; }; + 6BF2BEB14E71984800000000 /* face_detection_short_range.tflite */ = {isa = PBXFileReference; lastKnownFileType = dyn.age81k3xqrf4gn; name = face_detection_short_range.tflite; path = mediapipe/modules/face_detection/face_detection_short_range.tflite; sourceTree = ""; }; 6BF2BEB14F531D3500000000 /* rectangle_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = rectangle_util.h; path = mediapipe/util/rectangle_util.h; sourceTree = ""; }; - 6BF2BEB14FE9977200000000 /* registration.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = registration.cc; path = mediapipe/framework/deps/registration.cc; sourceTree = ""; }; - 6BF2BEB14FF9385800000000 /* MPPMetalHelper.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MPPMetalHelper.h; path = mediapipe/gpu/MPPMetalHelper.h; sourceTree = ""; }; 6BF2BEB1506223AF00000000 /* Weakify.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = Weakify.h; path = mediapipe/objc/Weakify.h; sourceTree = ""; }; - 6BF2BEB150AA04AF00000000 /* gpu_buffer_format.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gpu_buffer_format.h; path = mediapipe/gpu/gpu_buffer_format.h; sourceTree = ""; }; 6BF2BEB1510392E900000000 /* ola_graph.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ola_graph.h; path = mediapipe/render/module/common/ola_graph.h; sourceTree = ""; }; 6BF2BEB1511B4B0900000000 /* face_landmarks_to_render_data_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = face_landmarks_to_render_data_calculator.cc; path = mediapipe/graphs/face_mesh/calculators/face_landmarks_to_render_data_calculator.cc; sourceTree = ""; }; - 6BF2BEB1513341B200000000 /* rectangle.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = rectangle.h; path = mediapipe/framework/deps/rectangle.h; sourceTree = ""; }; 6BF2BEB151587D2F00000000 /* LUTFilter.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = LUTFilter.hpp; path = mediapipe/render/core/LUTFilter.hpp; sourceTree = ""; }; - 6BF2BEB15176F86500000000 /* input_stream_shard.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = input_stream_shard.cc; path = mediapipe/framework/input_stream_shard.cc; sourceTree = ""; }; 6BF2BEB152022CF000000000 /* lib_idx_olamodule_common_library_63E72567_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_olamodule_common_library_63E72567_ios_min11.0.a; path = lib_idx_olamodule_common_library_63E72567_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB15215FAC800000000 /* landmarks_refinement_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = landmarks_refinement_calculator.cc; path = mediapipe/calculators/util/landmarks_refinement_calculator.cc; sourceTree = ""; }; - 6BF2BEB15235D01B00000000 /* ret_check.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ret_check.h; path = mediapipe/framework/deps/ret_check.h; sourceTree = ""; }; - 6BF2BEB1535F4B0A00000000 /* demangle.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = demangle.h; path = mediapipe/framework/demangle.h; sourceTree = ""; }; - 6BF2BEB15361890F00000000 /* gl_context_eagl.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gl_context_eagl.cc; path = mediapipe/gpu/gl_context_eagl.cc; sourceTree = ""; }; - 6BF2BEB15369E8AC00000000 /* packet.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = packet.cc; path = mediapipe/framework/packet.cc; sourceTree = ""; }; 6BF2BEB15590E40F00000000 /* vec2.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vec2.cpp; path = mediapipe/render/core/math/vec2.cpp; sourceTree = ""; }; - 6BF2BEB155AD4EF300000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/calculators/image/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; 6BF2BEB15656FB7600000000 /* lib_idx_annotation_overlay_calculator_D98E9275_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_annotation_overlay_calculator_D98E9275_ios_min11.0.a; path = lib_idx_annotation_overlay_calculator_D98E9275_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB15701696000000000 /* sink.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = sink.h; path = mediapipe/framework/tool/sink.h; sourceTree = ""; }; - 6BF2BEB1570746DA00000000 /* options_field_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = options_field_util.h; path = mediapipe/framework/tool/options_field_util.h; sourceTree = ""; }; - 6BF2BEB1574A245900000000 /* graph_service.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = graph_service.h; path = mediapipe/framework/graph_service.h; sourceTree = ""; }; - 6BF2BEB15757E2E000000000 /* lib_idx_profiler_resource_util_35C39BA3_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_profiler_resource_util_35C39BA3_ios_min11.0.a; path = lib_idx_profiler_resource_util_35C39BA3_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB15878665C00000000 /* calculator_node.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = calculator_node.h; path = mediapipe/framework/calculator_node.h; sourceTree = ""; }; - 6BF2BEB158D6475700000000 /* video_stream_header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = video_stream_header.h; path = mediapipe/framework/formats/video_stream_header.h; sourceTree = ""; }; - 6BF2BEB159A4B20700000000 /* output_stream_shard.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = output_stream_shard.h; path = mediapipe/framework/output_stream_shard.h; sourceTree = ""; }; 6BF2BEB15B1A675D00000000 /* BilateralAdjustFilter.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = BilateralAdjustFilter.hpp; path = mediapipe/render/module/beauty/filters/BilateralAdjustFilter.hpp; sourceTree = ""; }; 6BF2BEB15BA3402400000000 /* lib_idx_annotation_overlay_calculator_D98E9275_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_annotation_overlay_calculator_D98E9275_ios_min15.5.a; path = lib_idx_annotation_overlay_calculator_D98E9275_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB15BDB816A00000000 /* platform_specific_profiling.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = platform_specific_profiling.h; path = mediapipe/framework/platform_specific_profiling.h; sourceTree = ""; }; - 6BF2BEB15BDC4E2C00000000 /* lib_idx_MPPMetalHelper_D24F76A1_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_MPPMetalHelper_D24F76A1_ios_min15.5.a; path = lib_idx_MPPMetalHelper_D24F76A1_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB15C3C5FA300000000 /* tag.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = tag.h; path = mediapipe/framework/api2/tag.h; sourceTree = ""; }; 6BF2BEB15CAB504600000000 /* math.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = math.cpp; path = mediapipe/render/core/math.cpp; sourceTree = ""; }; - 6BF2BEB15D3BB86000000000 /* calculator_registry.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = calculator_registry.h; path = mediapipe/framework/calculator_registry.h; sourceTree = ""; }; - 6BF2BEB15D6C89BE00000000 /* threadpool.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = threadpool.h; path = mediapipe/framework/deps/threadpool.h; sourceTree = ""; }; - 6BF2BEB15DDBD6E200000000 /* integral_types.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = integral_types.h; path = mediapipe/framework/port/integral_types.h; sourceTree = ""; }; - 6BF2BEB15E15594A00000000 /* lib_idx_MPPMetalHelper_D24F76A1_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_MPPMetalHelper_D24F76A1_ios_min11.0.a; path = lib_idx_MPPMetalHelper_D24F76A1_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB15E75465E00000000 /* lib_idx_image_frame_graph_tracer_4E004B23_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_frame_graph_tracer_4E004B23_ios_min15.5.a; path = lib_idx_image_frame_graph_tracer_4E004B23_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB15F87272300000000 /* profiler_resource_util_ios.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = profiler_resource_util_ios.cc; path = mediapipe/framework/profiler/profiler_resource_util_ios.cc; sourceTree = ""; }; - 6BF2BEB15FD87EC200000000 /* status_builder.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = status_builder.h; path = mediapipe/framework/deps/status_builder.h; sourceTree = ""; }; 6BF2BEB15FE6FF0200000000 /* lib_idx_clip_vector_size_calculator_C1D859C1_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_clip_vector_size_calculator_C1D859C1_ios_min15.5.a; path = lib_idx_clip_vector_size_calculator_C1D859C1_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB160B7CC3600000000 /* canonical_errors.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = canonical_errors.h; path = mediapipe/framework/port/canonical_errors.h; sourceTree = ""; }; 6BF2BEB160EC260800000000 /* lib_idx_annotation_renderer_8D68840D_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_annotation_renderer_8D68840D_ios_min11.0.a; path = lib_idx_annotation_renderer_8D68840D_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1611DBCED00000000 /* resource_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = resource_util.h; path = mediapipe/util/resource_util.h; sourceTree = ""; }; 6BF2BEB1616461B400000000 /* lib_idx_max_unpooling_max_pool_argmax_615F909D_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_max_unpooling_max_pool_argmax_615F909D_ios_min15.5.a; path = lib_idx_max_unpooling_max_pool_argmax_615F909D_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB161D5A49A00000000 /* lib_idx_file_path_E61EA0A1_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_file_path_E61EA0A1_ios_min11.0.a; path = lib_idx_file_path_E61EA0A1_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1623B07FA00000000 /* end_loop_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = end_loop_calculator.h; path = mediapipe/calculators/core/end_loop_calculator.h; sourceTree = ""; }; - 6BF2BEB1646C577900000000 /* 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 = ""; }; - 6BF2BEB164C0D87E00000000 /* packet.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = packet.h; path = mediapipe/framework/api2/packet.h; sourceTree = ""; }; - 6BF2BEB1653B17CA00000000 /* thread_options.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = thread_options.h; path = mediapipe/framework/deps/thread_options.h; sourceTree = ""; }; 6BF2BEB165A8D27000000000 /* SourceCamera.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SourceCamera.cpp; path = mediapipe/render/core/SourceCamera.cpp; sourceTree = ""; }; - 6BF2BEB1663742CC00000000 /* switch_container.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = switch_container.cc; path = mediapipe/framework/tool/switch_container.cc; sourceTree = ""; }; - 6BF2BEB1664209C000000000 /* gl_simple_shaders.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gl_simple_shaders.cc; path = mediapipe/gpu/gl_simple_shaders.cc; sourceTree = ""; }; 6BF2BEB166524CD000000000 /* AlphaBlendFilter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = AlphaBlendFilter.cpp; path = mediapipe/render/core/AlphaBlendFilter.cpp; sourceTree = ""; }; 6BF2BEB1665E250A00000000 /* op_resolver.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = op_resolver.cc; path = mediapipe/util/tflite/op_resolver.cc; sourceTree = ""; }; - 6BF2BEB1676E503E00000000 /* legacy_calculator_support.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = legacy_calculator_support.cc; path = mediapipe/framework/legacy_calculator_support.cc; sourceTree = ""; }; - 6BF2BEB167ED182A00000000 /* output_side_packet_impl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = output_side_packet_impl.h; path = mediapipe/framework/output_side_packet_impl.h; sourceTree = ""; }; 6BF2BEB16909A4FC00000000 /* NSError+util_status.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "NSError+util_status.mm"; path = "mediapipe/objc/NSError+util_status.mm"; sourceTree = ""; }; - 6BF2BEB1693BCA6300000000 /* opencv_core_inc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = opencv_core_inc.h; path = mediapipe/framework/port/opencv_core_inc.h; sourceTree = ""; }; 6BF2BEB1695F7B1800000000 /* OlaShareTextureFilter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = OlaShareTextureFilter.cpp; path = mediapipe/render/core/OlaShareTextureFilter.cpp; sourceTree = ""; }; 6BF2BEB16988849800000000 /* rect_transformation_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = rect_transformation_calculator.cc; path = mediapipe/calculators/util/rect_transformation_calculator.cc; sourceTree = ""; }; 6BF2BEB16A24D81700000000 /* detection_projection_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = detection_projection_calculator.cc; path = mediapipe/calculators/util/detection_projection_calculator.cc; sourceTree = ""; }; - 6BF2BEB16A4641EF00000000 /* strong_int.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = strong_int.h; path = mediapipe/framework/deps/strong_int.h; sourceTree = ""; }; - 6BF2BEB16B9D59FB00000000 /* scheduler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = scheduler.h; path = mediapipe/framework/scheduler.h; sourceTree = ""; }; - 6BF2BEB16C0753C400000000 /* rectangle.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = rectangle.h; path = mediapipe/framework/port/rectangle.h; sourceTree = ""; }; - 6BF2BEB16C46880800000000 /* lib_idx_gl_calculator_helper_DC51F13C_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_gl_calculator_helper_DC51F13C_ios_min15.5.a; path = lib_idx_gl_calculator_helper_DC51F13C_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB16CB3FDF900000000 /* fill_packet_set.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = fill_packet_set.h; path = mediapipe/framework/tool/fill_packet_set.h; sourceTree = ""; }; - 6BF2BEB16D290D2200000000 /* image.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = image.h; path = mediapipe/framework/formats/image.h; sourceTree = ""; }; 6BF2BEB16D38EA9B00000000 /* landmarks_to_render_data_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = landmarks_to_render_data_calculator.h; path = mediapipe/calculators/util/landmarks_to_render_data_calculator.h; sourceTree = ""; }; - 6BF2BEB16DADEE7000000000 /* image_frame.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = image_frame.cc; path = mediapipe/framework/formats/image_frame.cc; sourceTree = ""; }; - 6BF2BEB16DD8CBD900000000 /* gl_context_internal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_context_internal.h; path = mediapipe/gpu/gl_context_internal.h; sourceTree = ""; }; 6BF2BEB16E142DC700000000 /* LUTFilter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LUTFilter.cpp; path = mediapipe/render/core/LUTFilter.cpp; sourceTree = ""; }; - 6BF2BEB16E1A9C2D00000000 /* status_builder.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = status_builder.cc; path = mediapipe/framework/deps/status_builder.cc; sourceTree = ""; }; 6BF2BEB16E602ADB00000000 /* math.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = math.hpp; path = mediapipe/render/core/math.hpp; sourceTree = ""; }; 6BF2BEB16EE5C41200000000 /* cpu_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cpu_util.cc; path = mediapipe/util/cpu_util.cc; sourceTree = ""; }; - 6BF2BEB16F07E71A00000000 /* lib_idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min15.5.a; path = lib_idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB16F3388EE00000000 /* lib_idx_matrix_E57ACF41_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_matrix_E57ACF41_ios_min11.0.a; path = lib_idx_matrix_E57ACF41_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB16FFC9AEA00000000 /* location.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = location.h; path = mediapipe/framework/formats/location.h; sourceTree = ""; }; + 6BF2BEB16F17AAC200000000 /* lib_idx_cpu_util_C9677097_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_cpu_util_C9677097_ios_min15.5.a; path = lib_idx_cpu_util_C9677097_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB17071A1E200000000 /* ola_graph.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ola_graph.cc; path = mediapipe/render/module/common/ola_graph.cc; sourceTree = ""; }; - 6BF2BEB17081A3B200000000 /* re2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = re2.h; path = mediapipe/framework/deps/re2.h; sourceTree = ""; }; 6BF2BEB17278B65600000000 /* lib_idx_tflite_model_loader_254BEB33_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tflite_model_loader_254BEB33_ios_min11.0.a; path = lib_idx_tflite_model_loader_254BEB33_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB172ED6A0900000000 /* UnSharpMaskFilter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UnSharpMaskFilter.cpp; path = mediapipe/render/module/beauty/filters/UnSharpMaskFilter.cpp; sourceTree = ""; }; - 6BF2BEB17354A31A00000000 /* tensors_to_floats_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tensors_to_floats_calculator.cc; path = mediapipe/calculators/tensor/tensors_to_floats_calculator.cc; sourceTree = ""; }; - 6BF2BEB173FC11FB00000000 /* calculator_base.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = calculator_base.cc; path = mediapipe/framework/calculator_base.cc; sourceTree = ""; }; - 6BF2BEB174B3479000000000 /* status_macros.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = status_macros.h; path = mediapipe/framework/port/status_macros.h; sourceTree = ""; }; - 6BF2BEB174D2AB4700000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/calculators/internal/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - 6BF2BEB175EE83F000000000 /* lib_idx_image_to_tensor_converter_opencv_22266321_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_to_tensor_converter_opencv_22266321_ios_min11.0.a; path = lib_idx_image_to_tensor_converter_opencv_22266321_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 6BF2BEB17384850E00000000 /* lib_idx_util_C76AD427_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_util_C76AD427_ios_min11.0.a; path = lib_idx_util_C76AD427_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB176651B8000000000 /* OlaContext.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = OlaContext.cpp; path = mediapipe/render/core/OlaContext.cpp; sourceTree = ""; }; 6BF2BEB176D31B5D00000000 /* detections_to_rects_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = detections_to_rects_calculator.cc; path = mediapipe/calculators/util/detections_to_rects_calculator.cc; sourceTree = ""; }; - 6BF2BEB1775B508800000000 /* lib_idx_tflite_model_calculator_end_loop_calculator_38D3CDB2_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tflite_model_calculator_end_loop_calculator_38D3CDB2_ios_min11.0.a; path = lib_idx_tflite_model_calculator_end_loop_calculator_38D3CDB2_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB177AE156000000000 /* lib_idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min15.5.a; path = lib_idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB178760ADA00000000 /* Filter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Filter.cpp; path = mediapipe/render/core/Filter.cpp; sourceTree = ""; }; - 6BF2BEB17901AAB000000000 /* inference_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = inference_calculator.h; path = mediapipe/calculators/tensor/inference_calculator.h; sourceTree = ""; }; - 6BF2BEB179275DA200000000 /* in_order_output_stream_handler.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = in_order_output_stream_handler.cc; path = mediapipe/framework/stream_handler/in_order_output_stream_handler.cc; sourceTree = ""; }; 6BF2BEB17982938200000000 /* lib_idx_tflite_model_loader_254BEB33_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tflite_model_loader_254BEB33_ios_min15.5.a; path = lib_idx_tflite_model_loader_254BEB33_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB1798D3EC300000000 /* container_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = container_util.h; path = mediapipe/framework/tool/container_util.h; sourceTree = ""; }; - 6BF2BEB179C61E6000000000 /* name_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = name_util.cc; path = mediapipe/framework/tool/name_util.cc; sourceTree = ""; }; 6BF2BEB179FA7B5A00000000 /* lib_idx_non_max_suppression_calculator_E13679C5_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_non_max_suppression_calculator_E13679C5_ios_min15.5.a; path = lib_idx_non_max_suppression_calculator_E13679C5_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB17AF70C4100000000 /* gl_texture_buffer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_texture_buffer.h; path = mediapipe/gpu/gl_texture_buffer.h; sourceTree = ""; }; - 6BF2BEB17B0DE23500000000 /* file_helpers.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_helpers.cc; path = mediapipe/framework/deps/file_helpers.cc; sourceTree = ""; }; 6BF2BEB17B79044D00000000 /* Ref.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = Ref.hpp; path = mediapipe/render/core/Ref.hpp; sourceTree = ""; }; - 6BF2BEB17C18B4B200000000 /* calculator_framework.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = calculator_framework.h; path = mediapipe/framework/calculator_framework.h; sourceTree = ""; }; 6BF2BEB17C1D80AC00000000 /* TargetView.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = TargetView.cpp; path = mediapipe/render/core/TargetView.cpp; sourceTree = ""; }; 6BF2BEB17C35124F00000000 /* transform_tensor_bilinear.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = transform_tensor_bilinear.cc; path = mediapipe/util/tflite/operations/transform_tensor_bilinear.cc; sourceTree = ""; }; 6BF2BEB17C466FAA00000000 /* begin_loop_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = begin_loop_calculator.h; path = mediapipe/calculators/core/begin_loop_calculator.h; sourceTree = ""; }; 6BF2BEB17C69A2E400000000 /* lib_idx_transpose_conv_bias_E3459F40_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_transpose_conv_bias_E3459F40_ios_min15.5.a; path = lib_idx_transpose_conv_bias_E3459F40_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB17CA09C8900000000 /* file_path.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_path.cc; path = mediapipe/framework/deps/file_path.cc; sourceTree = ""; }; - 6BF2BEB17D2972A300000000 /* shader_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shader_util.cc; path = mediapipe/gpu/shader_util.cc; sourceTree = ""; }; - 6BF2BEB17D8559CA00000000 /* packet_generator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = packet_generator.h; path = mediapipe/framework/packet_generator.h; sourceTree = ""; }; 6BF2BEB17E728AD500000000 /* header_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = header_util.h; path = mediapipe/util/header_util.h; sourceTree = ""; }; - 6BF2BEB17E824DDD00000000 /* output_stream_manager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = output_stream_manager.h; path = mediapipe/framework/output_stream_manager.h; sourceTree = ""; }; 6BF2BEB17F4ECE3500000000 /* GLProgram.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = GLProgram.cpp; path = mediapipe/render/core/GLProgram.cpp; sourceTree = ""; }; - 6BF2BEB17F8AEE5A00000000 /* name_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = name_util.h; path = mediapipe/framework/tool/name_util.h; sourceTree = ""; }; - 6BF2BEB1801667D500000000 /* shader_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = shader_util.h; path = mediapipe/gpu/shader_util.h; sourceTree = ""; }; - 6BF2BEB180714D5F00000000 /* ret_check.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ret_check.h; path = mediapipe/framework/port/ret_check.h; sourceTree = ""; }; - 6BF2BEB1808B066100000000 /* timestamp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = timestamp.h; path = mediapipe/framework/timestamp.h; sourceTree = ""; }; - 6BF2BEB18197476100000000 /* file_helpers.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = file_helpers.h; path = mediapipe/framework/port/file_helpers.h; sourceTree = ""; }; - 6BF2BEB18201663E00000000 /* source_location.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = source_location.h; path = mediapipe/framework/port/source_location.h; sourceTree = ""; }; - 6BF2BEB18222E1E800000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/framework/profiler/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; 6BF2BEB1822EE40B00000000 /* rect_to_render_data_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = rect_to_render_data_calculator.cc; path = mediapipe/calculators/util/rect_to_render_data_calculator.cc; sourceTree = ""; }; 6BF2BEB182C4C71800000000 /* Framebuffer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Framebuffer.cpp; path = mediapipe/render/core/Framebuffer.cpp; sourceTree = ""; }; - 6BF2BEB182E727FD00000000 /* packet_generator_wrapper_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = packet_generator_wrapper_calculator.cc; path = mediapipe/framework/tool/packet_generator_wrapper_calculator.cc; sourceTree = ""; }; - 6BF2BEB18303122300000000 /* aligned_malloc_and_free.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = aligned_malloc_and_free.h; path = mediapipe/framework/port/aligned_malloc_and_free.h; sourceTree = ""; }; 6BF2BEB18386342A00000000 /* face_mesh_module.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = face_mesh_module.h; path = mediapipe/render/module/beauty/face_mesh_module.h; sourceTree = ""; }; 6BF2BEB184CDCED100000000 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; name = Info.plist; path = mediapipe/render/module/beauty/ios/framework/Info.plist; sourceTree = ""; }; - 6BF2BEB184E8641C00000000 /* output_stream_poller.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = output_stream_poller.h; path = mediapipe/framework/output_stream_poller.h; sourceTree = ""; }; 6BF2BEB18556057300000000 /* Target.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = Target.hpp; path = mediapipe/render/core/Target.hpp; sourceTree = ""; }; - 6BF2BEB1860C822F00000000 /* status_builder.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = status_builder.h; path = mediapipe/framework/port/status_builder.h; sourceTree = ""; }; + 6BF2BEB185A9B3FE00000000 /* lib_idx_end_loop_calculator_AADF2B85_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_end_loop_calculator_AADF2B85_ios_min15.5.a; path = lib_idx_end_loop_calculator_AADF2B85_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1861FE90A00000000 /* OlaFaceUnityFramework.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; name = OlaFaceUnityFramework.framework; path = OlaFaceUnityFramework.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1868499C900000000 /* SourceImage.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SourceImage.cpp; path = mediapipe/render/core/SourceImage.cpp; sourceTree = ""; }; - 6BF2BEB1869D07B400000000 /* packet_generator_graph.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = packet_generator_graph.h; path = mediapipe/framework/packet_generator_graph.h; sourceTree = ""; }; - 6BF2BEB186EDD45D00000000 /* MPPMetalUtil.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = MPPMetalUtil.mm; path = mediapipe/gpu/MPPMetalUtil.mm; sourceTree = ""; }; 6BF2BEB186F599C300000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/render/core/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; 6BF2BEB1872E92F200000000 /* GPUImageUtil.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = GPUImageUtil.h; path = mediapipe/render/core/GPUImageUtil.h; sourceTree = ""; }; 6BF2BEB18751E1EB00000000 /* OlaContext.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = OlaContext.hpp; path = mediapipe/render/core/OlaContext.hpp; sourceTree = ""; }; - 6BF2BEB1880372FF00000000 /* core_proto_inc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = core_proto_inc.h; path = mediapipe/framework/port/core_proto_inc.h; sourceTree = ""; }; - 6BF2BEB1880AB3FC00000000 /* calculator_contract.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = calculator_contract.h; path = mediapipe/framework/calculator_contract.h; sourceTree = ""; }; - 6BF2BEB1883C821000000000 /* in_order_output_stream_handler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = in_order_output_stream_handler.h; path = mediapipe/framework/stream_handler/in_order_output_stream_handler.h; sourceTree = ""; }; - 6BF2BEB18878AA2E00000000 /* input_stream_manager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = input_stream_manager.h; path = mediapipe/framework/input_stream_manager.h; sourceTree = ""; }; - 6BF2BEB1892D264500000000 /* image_properties_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = image_properties_calculator.cc; path = mediapipe/calculators/image/image_properties_calculator.cc; sourceTree = ""; }; - 6BF2BEB1894A474700000000 /* threadpool_pthread_impl.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = threadpool_pthread_impl.cc; path = mediapipe/framework/deps/threadpool_pthread_impl.cc; sourceTree = ""; }; - 6BF2BEB18A230BFA00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/framework/tool/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; 6BF2BEB18AB0302B00000000 /* SourceCamera.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = SourceCamera.hpp; path = mediapipe/render/core/SourceCamera.hpp; sourceTree = ""; }; 6BF2BEB18C3C5D5200000000 /* BilateralFilter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = BilateralFilter.cpp; path = mediapipe/render/core/BilateralFilter.cpp; sourceTree = ""; }; 6BF2BEB18CCC3D6A00000000 /* resource_cache.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = resource_cache.h; path = mediapipe/util/resource_cache.h; sourceTree = ""; }; - 6BF2BEB18D3D681400000000 /* gpu_buffer.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gpu_buffer.cc; path = mediapipe/gpu/gpu_buffer.cc; sourceTree = ""; }; 6BF2BEB18D99A8BD00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/calculators/core/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - 6BF2BEB18DA33BEA00000000 /* sink.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sink.cc; path = mediapipe/framework/tool/sink.cc; sourceTree = ""; }; 6BF2BEB18DE1AC1100000000 /* GPUImage-x.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "GPUImage-x.h"; path = "mediapipe/render/core/GPUImage-x.h"; sourceTree = ""; }; - 6BF2BEB18E3AEDD900000000 /* container_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = container_util.cc; path = mediapipe/framework/tool/container_util.cc; sourceTree = ""; }; - 6BF2BEB18E62014A00000000 /* calculator_contract.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = calculator_contract.cc; path = mediapipe/framework/calculator_contract.cc; sourceTree = ""; }; - 6BF2BEB18EADB4B800000000 /* input_side_packet_handler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = input_side_packet_handler.h; path = mediapipe/framework/input_side_packet_handler.h; sourceTree = ""; }; - 6BF2BEB18FD5523E00000000 /* tensors_to_landmarks_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tensors_to_landmarks_calculator.cc; path = mediapipe/calculators/tensor/tensors_to_landmarks_calculator.cc; sourceTree = ""; }; - 6BF2BEB1902E183E00000000 /* lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_0402C5B7_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_0402C5B7_ios_min11.0.a; path = lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_0402C5B7_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB1903FFB7900000000 /* tag_map.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tag_map.cc; path = mediapipe/framework/tool/tag_map.cc; sourceTree = ""; }; 6BF2BEB1908FF76600000000 /* previous_loopback_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = previous_loopback_calculator.cc; path = mediapipe/calculators/core/previous_loopback_calculator.cc; sourceTree = ""; }; - 6BF2BEB19094316600000000 /* registration_token.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = registration_token.h; path = mediapipe/framework/deps/registration_token.h; sourceTree = ""; }; - 6BF2BEB190FA612200000000 /* calculator_context_manager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = calculator_context_manager.h; path = mediapipe/framework/calculator_context_manager.h; sourceTree = ""; }; 6BF2BEB19158518E00000000 /* landmarks_to_render_data_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = landmarks_to_render_data_calculator.cc; path = mediapipe/calculators/util/landmarks_to_render_data_calculator.cc; sourceTree = ""; }; - 6BF2BEB19280C6F300000000 /* tflite_custom_op_resolver_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tflite_custom_op_resolver_calculator.cc; path = mediapipe/calculators/tflite/tflite_custom_op_resolver_calculator.cc; sourceTree = ""; }; 6BF2BEB192A4902100000000 /* op_resolver.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = op_resolver.h; path = mediapipe/util/tflite/op_resolver.h; sourceTree = ""; }; - 6BF2BEB19322F49600000000 /* status_handler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = status_handler.h; path = mediapipe/framework/status_handler.h; sourceTree = ""; }; - 6BF2BEB19343B56C00000000 /* proto_util_lite.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = proto_util_lite.cc; path = mediapipe/framework/tool/proto_util_lite.cc; sourceTree = ""; }; 6BF2BEB19365292D00000000 /* IOSTarget.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = IOSTarget.hpp; path = mediapipe/render/core/IOSTarget.hpp; sourceTree = ""; }; - 6BF2BEB19427457100000000 /* topologicalsorter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = topologicalsorter.h; path = mediapipe/framework/deps/topologicalsorter.h; sourceTree = ""; }; 6BF2BEB19448E48100000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/util/tflite/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; 6BF2BEB1948567FF00000000 /* CVFramebuffer.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = CVFramebuffer.hpp; path = mediapipe/render/core/CVFramebuffer.hpp; sourceTree = ""; }; - 6BF2BEB194ACD3D200000000 /* validate.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = validate.cc; path = mediapipe/framework/tool/validate.cc; sourceTree = ""; }; - 6BF2BEB1953F4C1900000000 /* executor.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = executor.cc; path = mediapipe/framework/executor.cc; sourceTree = ""; }; 6BF2BEB1954B39AD00000000 /* non_max_suppression_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = non_max_suppression_calculator.cc; path = mediapipe/calculators/util/non_max_suppression_calculator.cc; sourceTree = ""; }; - 6BF2BEB196E75F6C00000000 /* lib_idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min11.0.a; path = lib_idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB19807610500000000 /* MPPGraph.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = MPPGraph.mm; path = mediapipe/objc/MPPGraph.mm; sourceTree = ""; }; 6BF2BEB198ABE7D300000000 /* UnSharpMaskFilter.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = UnSharpMaskFilter.hpp; path = mediapipe/render/module/beauty/filters/UnSharpMaskFilter.hpp; sourceTree = ""; }; 6BF2BEB198F11B7B00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/graphs/face_mesh/subgraphs/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - 6BF2BEB198F8470300000000 /* default_input_stream_handler.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = default_input_stream_handler.cc; path = mediapipe/framework/stream_handler/default_input_stream_handler.cc; sourceTree = ""; }; 6BF2BEB1993D6F9000000000 /* GaussianBlurFilter.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = GaussianBlurFilter.hpp; path = mediapipe/render/core/GaussianBlurFilter.hpp; sourceTree = ""; }; - 6BF2BEB1994724E200000000 /* statusor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = statusor.h; path = mediapipe/framework/port/statusor.h; sourceTree = ""; }; - 6BF2BEB19A1CB0AB00000000 /* no_destructor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = no_destructor.h; path = mediapipe/framework/deps/no_destructor.h; sourceTree = ""; }; - 6BF2BEB19B1FC05C00000000 /* lib_idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min11.0.a; path = lib_idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB19CA882CA00000000 /* MPPTimestampConverter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MPPTimestampConverter.h; path = mediapipe/objc/MPPTimestampConverter.h; sourceTree = ""; }; - 6BF2BEB19CBDC5A500000000 /* trace_builder.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = trace_builder.cc; path = mediapipe/framework/profiler/trace_builder.cc; sourceTree = ""; }; - 6BF2BEB19CEF571A00000000 /* tflite_model_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tflite_model_calculator.cc; path = mediapipe/calculators/tflite/tflite_model_calculator.cc; sourceTree = ""; }; - 6BF2BEB19D245EEB00000000 /* logging.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = logging.h; path = mediapipe/framework/port/logging.h; sourceTree = ""; }; - 6BF2BEB19D427FC400000000 /* executor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = executor.h; path = mediapipe/framework/executor.h; sourceTree = ""; }; - 6BF2BEB19DC0A85E00000000 /* gl_texture_view.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gl_texture_view.cc; path = mediapipe/gpu/gl_texture_view.cc; sourceTree = ""; }; - 6BF2BEB19E6C836600000000 /* lib_idx_inference_calculator_interface_inference_calculator_cpu_EC7FC897_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_inference_calculator_interface_inference_calculator_cpu_EC7FC897_ios_min15.5.a; path = lib_idx_inference_calculator_interface_inference_calculator_cpu_EC7FC897_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB19F1006A000000000 /* subgraph_expansion.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = subgraph_expansion.cc; path = mediapipe/framework/tool/subgraph_expansion.cc; sourceTree = ""; }; - 6BF2BEB19F67F7B300000000 /* delegating_executor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = delegating_executor.h; path = mediapipe/framework/delegating_executor.h; sourceTree = ""; }; - 6BF2BEB19F6BE74900000000 /* profiler_resource_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = profiler_resource_util.h; path = mediapipe/framework/profiler/profiler_resource_util.h; sourceTree = ""; }; + 6BF2BEB19E1406F200000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/modules/face_landmark/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; 6BF2BEB1A061BE4E00000000 /* FaceDistortionFilter.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = FaceDistortionFilter.hpp; path = mediapipe/render/module/beauty/filters/FaceDistortionFilter.hpp; sourceTree = ""; }; - 6BF2BEB1A0D4CED400000000 /* const_str.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = const_str.h; path = mediapipe/framework/api2/const_str.h; sourceTree = ""; }; - 6BF2BEB1A160E81200000000 /* vector.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = vector.h; path = mediapipe/framework/port/vector.h; sourceTree = ""; }; 6BF2BEB1A24CB7E500000000 /* local_file_contents_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = local_file_contents_calculator.cc; path = mediapipe/calculators/util/local_file_contents_calculator.cc; sourceTree = ""; }; - 6BF2BEB1A3360C7800000000 /* immediate_input_stream_handler.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = immediate_input_stream_handler.cc; path = mediapipe/framework/stream_handler/immediate_input_stream_handler.cc; sourceTree = ""; }; + 6BF2BEB1A374D54C00000000 /* lib_idx_rectangle_util_BC608102_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_rectangle_util_BC608102_ios_min15.5.a; path = lib_idx_rectangle_util_BC608102_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1A384020200000000 /* lib_idx_split_vector_calculator_ED1EBC41_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_split_vector_calculator_ED1EBC41_ios_min15.5.a; path = lib_idx_split_vector_calculator_ED1EBC41_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1A3AD775A00000000 /* max_pool_argmax.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = max_pool_argmax.h; path = mediapipe/util/tflite/operations/max_pool_argmax.h; sourceTree = ""; }; - 6BF2BEB1A3BD02C100000000 /* scheduler_queue.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = scheduler_queue.cc; path = mediapipe/framework/scheduler_queue.cc; sourceTree = ""; }; 6BF2BEB1A402CD0400000000 /* face_mesh_module.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = face_mesh_module.cc; path = mediapipe/render/module/beauty/face_mesh_module.cc; sourceTree = ""; }; 6BF2BEB1A44A9C2600000000 /* resource_util_custom.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = resource_util_custom.h; path = mediapipe/util/resource_util_custom.h; sourceTree = ""; }; - 6BF2BEB1A5426DFA00000000 /* output_stream_handler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = output_stream_handler.h; path = mediapipe/framework/output_stream_handler.h; sourceTree = ""; }; - 6BF2BEB1A54334CD00000000 /* image_opencv.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = image_opencv.cc; path = mediapipe/framework/formats/image_opencv.cc; sourceTree = ""; }; - 6BF2BEB1A59F4B3400000000 /* lib_idx_MPPGraphGPUData_39C9C70C_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_MPPGraphGPUData_39C9C70C_ios_min15.5.a; path = lib_idx_MPPGraphGPUData_39C9C70C_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1A5AE2EC700000000 /* vec4.inl */ = {isa = PBXFileReference; lastKnownFileType = "public.c-plus-plus-inline-header"; name = vec4.inl; path = mediapipe/render/core/math/vec4.inl; sourceTree = ""; }; - 6BF2BEB1A640951800000000 /* gpu_service.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gpu_service.h; path = mediapipe/gpu/gpu_service.h; sourceTree = ""; }; 6BF2BEB1A65D9EE000000000 /* association_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = association_calculator.h; path = mediapipe/calculators/util/association_calculator.h; sourceTree = ""; }; - 6BF2BEB1A688B9F200000000 /* packet_type.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = packet_type.h; path = mediapipe/framework/packet_type.h; sourceTree = ""; }; - 6BF2BEB1A6AE93A200000000 /* lib_idx_gl_simple_shaders_CB7AD146_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_gl_simple_shaders_CB7AD146_ios_min15.5.a; path = lib_idx_gl_simple_shaders_CB7AD146_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB1A7A4F9AD00000000 /* file_path.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = file_path.h; path = mediapipe/framework/deps/file_path.h; sourceTree = ""; }; 6BF2BEB1A7B31D6A00000000 /* mat4.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mat4.cpp; path = mediapipe/render/core/math/mat4.cpp; sourceTree = ""; }; 6BF2BEB1A7FF5C8D00000000 /* vec4.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = vec4.hpp; path = mediapipe/render/core/math/vec4.hpp; sourceTree = ""; }; - 6BF2BEB1A8F5B73600000000 /* lib_idx_image_opencv_9E4E8A87_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_opencv_9E4E8A87_ios_min15.5.a; path = lib_idx_image_opencv_9E4E8A87_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB1A9411D1C00000000 /* tensor_ahwb.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tensor_ahwb.cc; path = mediapipe/framework/formats/tensor_ahwb.cc; sourceTree = ""; }; 6BF2BEB1AA92561800000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/calculators/util/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; 6BF2BEB1AAA709F700000000 /* clip_vector_size_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = clip_vector_size_calculator.h; path = mediapipe/calculators/core/clip_vector_size_calculator.h; sourceTree = ""; }; - 6BF2BEB1AAE7EFCA00000000 /* attachments.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = attachments.h; path = mediapipe/gpu/attachments.h; sourceTree = ""; }; 6BF2BEB1AB2D5D1300000000 /* begin_loop_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = begin_loop_calculator.cc; path = mediapipe/calculators/core/begin_loop_calculator.cc; sourceTree = ""; }; - 6BF2BEB1ABAFB45400000000 /* gl_base.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_base.h; path = mediapipe/gpu/gl_base.h; sourceTree = ""; }; - 6BF2BEB1ABE2180800000000 /* tensor.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tensor.cc; path = mediapipe/framework/formats/tensor.cc; sourceTree = ""; }; - 6BF2BEB1AC57DDE300000000 /* profiler_resource_util_common.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = profiler_resource_util_common.cc; path = mediapipe/framework/profiler/profiler_resource_util_common.cc; sourceTree = ""; }; 6BF2BEB1ACECC86600000000 /* face_mesh_module_imp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = face_mesh_module_imp.h; path = mediapipe/render/module/beauty/face_mesh_module_imp.h; sourceTree = ""; }; 6BF2BEB1AD0229B000000000 /* config.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = config.h; path = mediapipe/util/tflite/config.h; sourceTree = ""; }; - 6BF2BEB1AD25FB3D00000000 /* graph_profiler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = graph_profiler.h; path = mediapipe/framework/profiler/graph_profiler.h; sourceTree = ""; }; 6BF2BEB1AE45ACD400000000 /* lib_idx_begin_loop_calculator_50B5F6A2_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_begin_loop_calculator_50B5F6A2_ios_min11.0.a; path = lib_idx_begin_loop_calculator_50B5F6A2_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1AEA6171A00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/render/module/beauty/filters/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - 6BF2BEB1AECAD3DF00000000 /* singleton.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = singleton.h; path = mediapipe/framework/deps/singleton.h; sourceTree = ""; }; - 6BF2BEB1AEFCBBBF00000000 /* image_frame_view.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = image_frame_view.h; path = mediapipe/gpu/image_frame_view.h; sourceTree = ""; }; - 6BF2BEB1AFFDFEDD00000000 /* scheduler_shared.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = scheduler_shared.h; path = mediapipe/framework/scheduler_shared.h; sourceTree = ""; }; 6BF2BEB1B01194E800000000 /* resource_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = resource_util.cc; path = mediapipe/util/resource_util.cc; sourceTree = ""; }; 6BF2BEB1B030713700000000 /* AlphaBlendFilter.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = AlphaBlendFilter.hpp; path = mediapipe/render/core/AlphaBlendFilter.hpp; sourceTree = ""; }; - 6BF2BEB1B0FBE87A00000000 /* lib_idx_file_path_E61EA0A1_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_file_path_E61EA0A1_ios_min15.5.a; path = lib_idx_file_path_E61EA0A1_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1B1BCD15C00000000 /* end_loop_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = end_loop_calculator.cc; path = mediapipe/calculators/core/end_loop_calculator.cc; sourceTree = ""; }; - 6BF2BEB1B27784D400000000 /* counter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = counter.h; path = mediapipe/framework/counter.h; sourceTree = ""; }; - 6BF2BEB1B2FBB04C00000000 /* threadpool.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = threadpool.h; path = mediapipe/framework/port/threadpool.h; sourceTree = ""; }; - 6BF2BEB1B319CA1A00000000 /* aligned_malloc_and_free.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = aligned_malloc_and_free.h; path = mediapipe/framework/deps/aligned_malloc_and_free.h; sourceTree = ""; }; 6BF2BEB1B38F435A00000000 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min11.0.a; path = lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB1B3D8E01500000000 /* input_side_packet_handler.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = input_side_packet_handler.cc; path = mediapipe/framework/input_side_packet_handler.cc; sourceTree = ""; }; - 6BF2BEB1B46C638600000000 /* proto_util_lite.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = proto_util_lite.h; path = mediapipe/framework/tool/proto_util_lite.h; sourceTree = ""; }; - 6BF2BEB1B47EA6D400000000 /* lib_idx_tflite_custom_op_resolver_calculator_772D286F_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tflite_custom_op_resolver_calculator_772D286F_ios_min15.5.a; path = lib_idx_tflite_custom_op_resolver_calculator_772D286F_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1B4B6713700000000 /* math_utils.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = math_utils.hpp; path = mediapipe/render/core/math/math_utils.hpp; sourceTree = ""; }; - 6BF2BEB1B4CA759A00000000 /* 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 = ""; }; - 6BF2BEB1B6988F9900000000 /* image.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = image.cc; path = mediapipe/framework/formats/image.cc; sourceTree = ""; }; 6BF2BEB1B6C12DD500000000 /* OlaShareTextureFilter.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = OlaShareTextureFilter.hpp; path = mediapipe/render/core/OlaShareTextureFilter.hpp; sourceTree = ""; }; - 6BF2BEB1B79DF59300000000 /* status_macros.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = status_macros.h; path = mediapipe/framework/deps/status_macros.h; sourceTree = ""; }; - 6BF2BEB1B7B8021300000000 /* image_to_tensor_converter_opencv.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = image_to_tensor_converter_opencv.h; path = mediapipe/calculators/tensor/image_to_tensor_converter_opencv.h; sourceTree = ""; }; - 6BF2BEB1B90D6AD700000000 /* calculator_state.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = calculator_state.cc; path = mediapipe/framework/calculator_state.cc; sourceTree = ""; }; - 6BF2BEB1B917097400000000 /* graph_support.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = graph_support.h; path = mediapipe/gpu/graph_support.h; sourceTree = ""; }; - 6BF2BEB1B932689500000000 /* validate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = validate.h; path = mediapipe/framework/tool/validate.h; sourceTree = ""; }; - 6BF2BEB1B988349400000000 /* lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_0402C5B7_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_0402C5B7_ios_min15.5.a; path = lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_0402C5B7_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1B9D8F94200000000 /* constant_side_packet_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = constant_side_packet_calculator.cc; path = mediapipe/calculators/core/constant_side_packet_calculator.cc; sourceTree = ""; }; - 6BF2BEB1B9E631C400000000 /* lib_idx_tflite_custom_op_resolver_calculator_772D286F_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tflite_custom_op_resolver_calculator_772D286F_ios_min11.0.a; path = lib_idx_tflite_custom_op_resolver_calculator_772D286F_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB1BA4C7DED00000000 /* gpu_buffer_storage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gpu_buffer_storage.h; path = mediapipe/gpu/gpu_buffer_storage.h; sourceTree = ""; }; - 6BF2BEB1BAE062CD00000000 /* output_stream_handler.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = output_stream_handler.cc; path = mediapipe/framework/output_stream_handler.cc; sourceTree = ""; }; - 6BF2BEB1BAF6D7FB00000000 /* graph_profiler.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graph_profiler.cc; path = mediapipe/framework/profiler/graph_profiler.cc; sourceTree = ""; }; - 6BF2BEB1BB36203600000000 /* lib_idx_matrix_E57ACF41_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_matrix_E57ACF41_ios_min15.5.a; path = lib_idx_matrix_E57ACF41_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1BB36CC3A00000000 /* collection_has_min_size_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = collection_has_min_size_calculator.h; path = mediapipe/calculators/util/collection_has_min_size_calculator.h; sourceTree = ""; }; - 6BF2BEB1BCA5996A00000000 /* options_map.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = options_map.h; path = mediapipe/framework/tool/options_map.h; sourceTree = ""; }; 6BF2BEB1BD589A4200000000 /* FramebufferCache.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = FramebufferCache.hpp; path = mediapipe/render/core/FramebufferCache.hpp; sourceTree = ""; }; - 6BF2BEB1BD71A6CA00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/framework/formats/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - 6BF2BEB1BDE9DAE500000000 /* input_stream_shard.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = input_stream_shard.h; path = mediapipe/framework/input_stream_shard.h; sourceTree = ""; }; - 6BF2BEB1BFB21A6700000000 /* tag_map.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = tag_map.h; path = mediapipe/framework/tool/tag_map.h; sourceTree = ""; }; - 6BF2BEB1C0242BD100000000 /* packet.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = packet.cc; path = mediapipe/framework/api2/packet.cc; sourceTree = ""; }; - 6BF2BEB1C0AA537800000000 /* lib_idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min15.5.a; path = lib_idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1C0DA62F400000000 /* Context.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = Context.hpp; path = mediapipe/render/core/Context.hpp; sourceTree = ""; }; 6BF2BEB1C133DCA000000000 /* TargetView.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = TargetView.hpp; path = mediapipe/render/core/TargetView.hpp; sourceTree = ""; }; - 6BF2BEB1C19F2BDB00000000 /* inference_calculator_metal.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = inference_calculator_metal.cc; path = mediapipe/calculators/tensor/inference_calculator_metal.cc; sourceTree = ""; }; - 6BF2BEB1C23D5A8900000000 /* gpu_buffer_format.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gpu_buffer_format.cc; path = mediapipe/gpu/gpu_buffer_format.cc; sourceTree = ""; }; - 6BF2BEB1C33800FF00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/framework/port/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - 6BF2BEB1C3BD3DCA00000000 /* calculator_base.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = calculator_base.h; path = mediapipe/framework/calculator_base.h; sourceTree = ""; }; - 6BF2BEB1C3C01D9000000000 /* gpu_shared_data_internal.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gpu_shared_data_internal.cc; path = mediapipe/gpu/gpu_shared_data_internal.cc; sourceTree = ""; }; - 6BF2BEB1C3DCE75400000000 /* port.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = port.h; path = mediapipe/framework/port.h; sourceTree = ""; }; 6BF2BEB1C40DE00800000000 /* lib_idx_non_max_suppression_calculator_E13679C5_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_non_max_suppression_calculator_E13679C5_ios_min11.0.a; path = lib_idx_non_max_suppression_calculator_E13679C5_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB1C42F44E800000000 /* validate_name.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = validate_name.cc; path = mediapipe/framework/tool/validate_name.cc; sourceTree = ""; }; - 6BF2BEB1C471843E00000000 /* MPPGraphGPUData.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = MPPGraphGPUData.mm; path = mediapipe/gpu/MPPGraphGPUData.mm; sourceTree = ""; }; - 6BF2BEB1C5778B6600000000 /* options_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = options_util.h; path = mediapipe/framework/tool/options_util.h; sourceTree = ""; }; 6BF2BEB1C578A56100000000 /* transform_landmarks.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = transform_landmarks.cc; path = mediapipe/util/tflite/operations/transform_landmarks.cc; sourceTree = ""; }; - 6BF2BEB1C5D7FA5E00000000 /* collection.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = collection.h; path = mediapipe/framework/collection.h; sourceTree = ""; }; - 6BF2BEB1C74C726D00000000 /* port.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = port.h; path = mediapipe/framework/port/port.h; sourceTree = ""; }; 6BF2BEB1C76D25EE00000000 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min11.0.a; path = lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB1C7D7F55E00000000 /* default_input_stream_handler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = default_input_stream_handler.h; path = mediapipe/framework/stream_handler/default_input_stream_handler.h; sourceTree = ""; }; 6BF2BEB1C846EAA000000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/render/module/common/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; 6BF2BEB1C8BD724E00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/graphs/face_mesh/calculators/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - 6BF2BEB1C94D4D4E00000000 /* lib_idx_tflite_model_calculator_end_loop_calculator_38D3CDB2_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tflite_model_calculator_end_loop_calculator_38D3CDB2_ios_min15.5.a; path = lib_idx_tflite_model_calculator_end_loop_calculator_38D3CDB2_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1C9C325FA00000000 /* lib_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = "lib_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min15.5.a"; path = "lib_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min15.5.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1C9E92EC600000000 /* GLProgram.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = GLProgram.hpp; path = mediapipe/render/core/GLProgram.hpp; sourceTree = ""; }; 6BF2BEB1CAFF3BDC00000000 /* lib_idx_transpose_conv_bias_E3459F40_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_transpose_conv_bias_E3459F40_ios_min11.0.a; path = lib_idx_transpose_conv_bias_E3459F40_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1CB04A48200000000 /* math_utils.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = math_utils.cpp; path = mediapipe/render/core/math/math_utils.cpp; sourceTree = ""; }; - 6BF2BEB1CB59887700000000 /* subgraph.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = subgraph.cc; path = mediapipe/framework/subgraph.cc; sourceTree = ""; }; 6BF2BEB1CB5A8A0E00000000 /* Source.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = Source.hpp; path = mediapipe/render/core/Source.hpp; sourceTree = ""; }; - 6BF2BEB1CB82B7FB00000000 /* calculator_context.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = calculator_context.h; path = mediapipe/framework/calculator_context.h; sourceTree = ""; }; - 6BF2BEB1CC15ACD800000000 /* lib_idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min15.5.a; path = lib_idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1CC197DE700000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/objc/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - 6BF2BEB1CC1CEC7400000000 /* thread_pool_executor.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = thread_pool_executor.cc; path = mediapipe/framework/thread_pool_executor.cc; sourceTree = ""; }; - 6BF2BEB1CC2F532800000000 /* lib_idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min15.5.a; path = lib_idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1CCC9CAE300000000 /* detections_to_rects_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = detections_to_rects_calculator.h; path = mediapipe/calculators/util/detections_to_rects_calculator.h; sourceTree = ""; }; - 6BF2BEB1CD235A4400000000 /* counter_factory.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = counter_factory.cc; path = mediapipe/framework/counter_factory.cc; sourceTree = ""; }; 6BF2BEB1CD7D0AD600000000 /* face_mesh_module_imp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = face_mesh_module_imp.cc; path = mediapipe/render/module/beauty/face_mesh_module_imp.cc; sourceTree = ""; }; 6BF2BEB1CD892EC300000000 /* GPUImageTarget.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = GPUImageTarget.h; path = mediapipe/render/core/GPUImageTarget.h; sourceTree = ""; }; - 6BF2BEB1CDB6653400000000 /* gl_calculator_helper.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gl_calculator_helper.cc; path = mediapipe/gpu/gl_calculator_helper.cc; sourceTree = ""; }; 6BF2BEB1CE57CAE800000000 /* lib_idx_annotation_renderer_8D68840D_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_annotation_renderer_8D68840D_ios_min15.5.a; path = lib_idx_annotation_renderer_8D68840D_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB1CF0DF08C00000000 /* graph_tracer.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graph_tracer.cc; path = mediapipe/framework/profiler/graph_tracer.cc; sourceTree = ""; }; - 6BF2BEB1CF0EECC200000000 /* lib_idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min15.5.a; path = lib_idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB1CF12C0C800000000 /* options_registry.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = options_registry.cc; path = mediapipe/framework/tool/options_registry.cc; sourceTree = ""; }; - 6BF2BEB1D0386F0200000000 /* lib_idx_image_gl_context_gpu_buffer_multi_pool_99A08626_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_gl_context_gpu_buffer_multi_pool_99A08626_ios_min11.0.a; path = lib_idx_image_gl_context_gpu_buffer_multi_pool_99A08626_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB1D0C63A8000000000 /* clock.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = clock.h; path = mediapipe/framework/deps/clock.h; sourceTree = ""; }; - 6BF2BEB1D265CD3E00000000 /* output_side_packet_impl.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = output_side_packet_impl.cc; path = mediapipe/framework/output_side_packet_impl.cc; sourceTree = ""; }; 6BF2BEB1D2F46D2A00000000 /* clip_vector_size_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = clip_vector_size_calculator.cc; path = mediapipe/calculators/core/clip_vector_size_calculator.cc; sourceTree = ""; }; - 6BF2BEB1D36B7DD000000000 /* gpu_service.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gpu_service.cc; path = mediapipe/gpu/gpu_service.cc; sourceTree = ""; }; - 6BF2BEB1D3C1DEA500000000 /* type_map.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = type_map.h; path = mediapipe/framework/type_map.h; sourceTree = ""; }; - 6BF2BEB1D3E5087100000000 /* image_frame_opencv.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = image_frame_opencv.cc; path = mediapipe/framework/formats/image_frame_opencv.cc; sourceTree = ""; }; - 6BF2BEB1D41C8E5500000000 /* image_frame.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = image_frame.h; path = mediapipe/framework/formats/image_frame.h; sourceTree = ""; }; 6BF2BEB1D488EF1800000000 /* lib_idx_detection_projection_calculator_6C26583E_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_detection_projection_calculator_6C26583E_ios_min15.5.a; path = lib_idx_detection_projection_calculator_6C26583E_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB1D4FF55E300000000 /* input_stream.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = input_stream.h; path = mediapipe/framework/input_stream.h; sourceTree = ""; }; 6BF2BEB1D606383800000000 /* transform_tensor_bilinear.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = transform_tensor_bilinear.h; path = mediapipe/util/tflite/operations/transform_tensor_bilinear.h; sourceTree = ""; }; - 6BF2BEB1D65644E600000000 /* lib_idx_shader_util_C047EBB4_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_shader_util_C047EBB4_ios_min15.5.a; path = lib_idx_shader_util_C047EBB4_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1D6736AD800000000 /* lib_idx_max_unpooling_max_pool_argmax_615F909D_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_max_unpooling_max_pool_argmax_615F909D_ios_min11.0.a; path = lib_idx_max_unpooling_max_pool_argmax_615F909D_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB1D73414D800000000 /* 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 = ""; }; 6BF2BEB1D796612B00000000 /* Target.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Target.cpp; path = mediapipe/render/core/Target.cpp; sourceTree = ""; }; - 6BF2BEB1D822317800000000 /* options_syntax_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = options_syntax_util.cc; path = mediapipe/framework/tool/options_syntax_util.cc; sourceTree = ""; }; - 6BF2BEB1D90020AA00000000 /* gl_context_profiler.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gl_context_profiler.cc; path = mediapipe/framework/profiler/gl_context_profiler.cc; sourceTree = ""; }; - 6BF2BEB1D924684600000000 /* 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 = ""; }; + 6BF2BEB1D89D727E00000000 /* lib_idx_end_loop_calculator_AADF2B85_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_end_loop_calculator_AADF2B85_ios_min11.0.a; path = lib_idx_end_loop_calculator_AADF2B85_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1D93FD90600000000 /* lib_idx_math_68C63536_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_math_68C63536_ios_min15.5.a; path = lib_idx_math_68C63536_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1D9E0F97500000000 /* Context.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Context.cpp; path = mediapipe/render/core/Context.cpp; sourceTree = ""; }; - 6BF2BEB1DB9D1C2A00000000 /* clock.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = clock.cc; path = mediapipe/framework/deps/clock.cc; sourceTree = ""; }; - 6BF2BEB1DBA1F4D600000000 /* lib_idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min11.0.a; path = lib_idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB1DC10729000000000 /* point2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = point2.h; path = mediapipe/framework/deps/point2.h; sourceTree = ""; }; 6BF2BEB1DC26EEDA00000000 /* libmediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = "libmediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary.a"; path = "libmediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB1DC63EA9700000000 /* point2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = point2.h; path = mediapipe/framework/port/point2.h; sourceTree = ""; }; - 6BF2BEB1DD9AD99400000000 /* trace_builder.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = trace_builder.h; path = mediapipe/framework/profiler/trace_builder.h; sourceTree = ""; }; 6BF2BEB1DE300BF600000000 /* lib_idx_olamodule_common_library_63E72567_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_olamodule_common_library_63E72567_ios_min15.5.a; path = lib_idx_olamodule_common_library_63E72567_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB1DEE2DFFC00000000 /* switch_demux_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = switch_demux_calculator.cc; path = mediapipe/framework/tool/switch_demux_calculator.cc; sourceTree = ""; }; 6BF2BEB1DEE6BAFA00000000 /* vec3.inl */ = {isa = PBXFileReference; lastKnownFileType = "public.c-plus-plus-inline-header"; name = vec3.inl; path = mediapipe/render/core/math/vec3.inl; sourceTree = ""; }; - 6BF2BEB1DF2C96BA00000000 /* MPPGraphGPUData.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MPPGraphGPUData.h; path = mediapipe/gpu/MPPGraphGPUData.h; sourceTree = ""; }; - 6BF2BEB1DF4B7C9A00000000 /* options_registry.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = options_registry.h; path = mediapipe/framework/tool/options_registry.h; sourceTree = ""; }; 6BF2BEB1DF7A0C9B00000000 /* face_mesh_beauty_render.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = face_mesh_beauty_render.cc; path = mediapipe/render/module/beauty/face_mesh_beauty_render.cc; sourceTree = ""; }; - 6BF2BEB1DF7B922800000000 /* status_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = status_util.h; path = mediapipe/framework/tool/status_util.h; sourceTree = ""; }; - 6BF2BEB1DFD99BDE00000000 /* lib_idx_image_properties_calculator_gpu_service_56DC0B61_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_properties_calculator_gpu_service_56DC0B61_ios_min15.5.a; path = lib_idx_image_properties_calculator_gpu_service_56DC0B61_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB1E04C93CE00000000 /* advanced_proto_lite_inc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = advanced_proto_lite_inc.h; path = mediapipe/framework/port/advanced_proto_lite_inc.h; sourceTree = ""; }; 6BF2BEB1E1673ED500000000 /* OlaBeautyFilter.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = OlaBeautyFilter.hpp; path = mediapipe/render/module/beauty/filters/OlaBeautyFilter.hpp; sourceTree = ""; }; - 6BF2BEB1E174331500000000 /* image_to_tensor_converter_metal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = image_to_tensor_converter_metal.h; path = mediapipe/calculators/tensor/image_to_tensor_converter_metal.h; sourceTree = ""; }; 6BF2BEB1E22D8E4E00000000 /* lib_idx_cpu_op_resolver_519CBACD_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_cpu_op_resolver_519CBACD_ios_min11.0.a; path = lib_idx_cpu_op_resolver_519CBACD_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB1E23DFAD100000000 /* counter_factory.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = counter_factory.h; path = mediapipe/framework/counter_factory.h; sourceTree = ""; }; - 6BF2BEB1E25C746E00000000 /* lib_idx_image_frame_graph_tracer_4E004B23_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_frame_graph_tracer_4E004B23_ios_min11.0.a; path = lib_idx_image_frame_graph_tracer_4E004B23_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1E276944000000000 /* MPPGraph.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MPPGraph.h; path = mediapipe/objc/MPPGraph.h; sourceTree = ""; }; - 6BF2BEB1E29809CA00000000 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_87112A87_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_87112A87_ios_min11.0.a; path = lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_87112A87_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB1E2A494C100000000 /* image_opencv.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = image_opencv.h; path = mediapipe/framework/formats/image_opencv.h; sourceTree = ""; }; 6BF2BEB1E2AEF3B900000000 /* mat4.inl */ = {isa = PBXFileReference; lastKnownFileType = "public.c-plus-plus-inline-header"; name = mat4.inl; path = mediapipe/render/core/math/mat4.inl; sourceTree = ""; }; 6BF2BEB1E2B253BD00000000 /* OpipeDispatch.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = OpipeDispatch.hpp; path = mediapipe/render/core/OpipeDispatch.hpp; sourceTree = ""; }; - 6BF2BEB1E2CCEE3B00000000 /* MPPMetalHelper.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = MPPMetalHelper.mm; path = mediapipe/gpu/MPPMetalHelper.mm; sourceTree = ""; }; 6BF2BEB1E364A8E800000000 /* lib_idx_mediapipe_framework_ios_C158E828_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_mediapipe_framework_ios_C158E828_ios_min15.5.a; path = lib_idx_mediapipe_framework_ios_C158E828_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB1E3DAC1ED00000000 /* status.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = status.h; path = mediapipe/framework/port/status.h; sourceTree = ""; }; - 6BF2BEB1E4E7AC2300000000 /* output_stream.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = output_stream.h; path = mediapipe/framework/output_stream.h; sourceTree = ""; }; - 6BF2BEB1E600CBCB00000000 /* inference_calculator_cpu.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = inference_calculator_cpu.cc; path = mediapipe/calculators/tensor/inference_calculator_cpu.cc; sourceTree = ""; }; - 6BF2BEB1E6069BD500000000 /* callback_packet_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = callback_packet_calculator.cc; path = mediapipe/calculators/internal/callback_packet_calculator.cc; sourceTree = ""; }; - 6BF2BEB1E63D507200000000 /* gpu_buffer_storage_cv_pixel_buffer.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gpu_buffer_storage_cv_pixel_buffer.cc; path = mediapipe/gpu/gpu_buffer_storage_cv_pixel_buffer.cc; sourceTree = ""; }; + 6BF2BEB1E3F4AD9A00000000 /* lib_idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min15.5.a; path = lib_idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1E66C0F0900000000 /* tflite_model_loader.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = tflite_model_loader.h; path = mediapipe/util/tflite/tflite_model_loader.h; sourceTree = ""; }; - 6BF2BEB1E73463BA00000000 /* inference_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = inference_calculator.cc; path = mediapipe/calculators/tensor/inference_calculator.cc; sourceTree = ""; }; - 6BF2BEB1E77FEC5500000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/framework/formats/annotation/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - 6BF2BEB1E7A8AC5300000000 /* re2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = re2.h; path = mediapipe/framework/port/re2.h; sourceTree = ""; }; 6BF2BEB1E82089DF00000000 /* collection_has_min_size_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = collection_has_min_size_calculator.cc; path = mediapipe/calculators/util/collection_has_min_size_calculator.cc; sourceTree = ""; }; + 6BF2BEB1E88ABD0C00000000 /* lib_idx_previous_loopback_calculator_header_util_D60754F6_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_previous_loopback_calculator_header_util_D60754F6_ios_min11.0.a; path = lib_idx_previous_loopback_calculator_header_util_D60754F6_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1E922429600000000 /* lib_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = "lib_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min11.0.a"; path = "lib_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min11.0.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB1E95EE0B700000000 /* validated_graph_config.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = validated_graph_config.h; path = mediapipe/framework/validated_graph_config.h; sourceTree = ""; }; 6BF2BEB1E9CE10DC00000000 /* lib_idx_resource_util_C5C5DB93_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_resource_util_C5C5DB93_ios_min11.0.a; path = lib_idx_resource_util_C5C5DB93_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1EA081C0700000000 /* landmark_projection_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = landmark_projection_calculator.cc; path = mediapipe/calculators/util/landmark_projection_calculator.cc; sourceTree = ""; }; 6BF2BEB1EA0F1F1F00000000 /* Ref.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Ref.cpp; path = mediapipe/render/core/Ref.cpp; sourceTree = ""; }; 6BF2BEB1EA26099000000000 /* FaceDistortionFilter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = FaceDistortionFilter.cpp; path = mediapipe/render/module/beauty/filters/FaceDistortionFilter.cpp; sourceTree = ""; }; - 6BF2BEB1EA7C050B00000000 /* advanced_proto_inc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = advanced_proto_inc.h; path = mediapipe/framework/port/advanced_proto_inc.h; sourceTree = ""; }; 6BF2BEB1EAFCD2EB00000000 /* split_vector_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = split_vector_calculator.cc; path = mediapipe/calculators/core/split_vector_calculator.cc; sourceTree = ""; }; 6BF2BEB1EBADEF3000000000 /* whiten.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = whiten.png; path = mediapipe/render/module/beauty/whiten.png; sourceTree = ""; }; - 6BF2BEB1EC826FBE00000000 /* packet_type.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = packet_type.cc; path = mediapipe/framework/packet_type.cc; sourceTree = ""; }; 6BF2BEB1ECA8F55D00000000 /* split_vector_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = split_vector_calculator.h; path = mediapipe/calculators/core/split_vector_calculator.h; sourceTree = ""; }; - 6BF2BEB1ECAC14B600000000 /* lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_717D4ABA_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_717D4ABA_ios_min11.0.a; path = lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_717D4ABA_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1ECDFFE8400000000 /* GPUImageMacros.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = GPUImageMacros.h; path = mediapipe/render/core/GPUImageMacros.h; sourceTree = ""; }; - 6BF2BEB1EDDD3E1000000000 /* lib_idx_tensor_7303F5EA_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tensor_7303F5EA_ios_min11.0.a; path = lib_idx_tensor_7303F5EA_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB1EDF6BDAE00000000 /* lib_idx_gl_calculator_helper_DC51F13C_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_gl_calculator_helper_DC51F13C_ios_min11.0.a; path = lib_idx_gl_calculator_helper_DC51F13C_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB1EE3C320400000000 /* monotonic_clock.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = monotonic_clock.cc; path = mediapipe/framework/deps/monotonic_clock.cc; sourceTree = ""; }; - 6BF2BEB1EF2DB52100000000 /* topologicalsorter.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = topologicalsorter.cc; path = mediapipe/framework/deps/topologicalsorter.cc; sourceTree = ""; }; - 6BF2BEB1EFCD23DE00000000 /* node.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = node.cc; path = mediapipe/framework/api2/node.cc; sourceTree = ""; }; 6BF2BEB1F00E9A9000000000 /* flow_limiter_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = flow_limiter_calculator.cc; path = mediapipe/calculators/core/flow_limiter_calculator.cc; sourceTree = ""; }; 6BF2BEB1F015768000000000 /* GaussianBlurMonoFilter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = GaussianBlurMonoFilter.cpp; path = mediapipe/render/core/GaussianBlurMonoFilter.cpp; sourceTree = ""; }; 6BF2BEB1F02D7B8400000000 /* FramebufferCache.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = FramebufferCache.cpp; path = mediapipe/render/core/FramebufferCache.cpp; sourceTree = ""; }; - 6BF2BEB1F038216200000000 /* gl_simple_shaders.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_simple_shaders.h; path = mediapipe/gpu/gl_simple_shaders.h; sourceTree = ""; }; - 6BF2BEB1F126859800000000 /* lib_idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min11.0.a; path = lib_idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1F14A7B4C00000000 /* GaussianBlurMonoFilter.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = GaussianBlurMonoFilter.hpp; path = mediapipe/render/core/GaussianBlurMonoFilter.hpp; sourceTree = ""; }; - 6BF2BEB1F19C372400000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/framework/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - 6BF2BEB1F21484F900000000 /* tag_map_helper.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = tag_map_helper.h; path = mediapipe/framework/tool/tag_map_helper.h; sourceTree = ""; }; - 6BF2BEB1F23F890000000000 /* input_stream_handler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = input_stream_handler.h; path = mediapipe/framework/input_stream_handler.h; sourceTree = ""; }; + 6BF2BEB1F180FE8800000000 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; 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_200517DA_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_200517DA_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1F2C948BB00000000 /* OlaBeautyFilter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = OlaBeautyFilter.cpp; path = mediapipe/render/module/beauty/filters/OlaBeautyFilter.cpp; sourceTree = ""; }; 6BF2BEB1F3CC262D00000000 /* tflite_model_loader.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tflite_model_loader.cc; path = mediapipe/util/tflite/tflite_model_loader.cc; sourceTree = ""; }; 6BF2BEB1F3F047F600000000 /* transpose_conv_bias.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = transpose_conv_bias.cc; path = mediapipe/util/tflite/operations/transpose_conv_bias.cc; sourceTree = ""; }; - 6BF2BEB1F413FAAB00000000 /* gl_texture_buffer_pool.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gl_texture_buffer_pool.cc; path = mediapipe/gpu/gl_texture_buffer_pool.cc; sourceTree = ""; }; - 6BF2BEB1F45BDEFB00000000 /* numbers.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = numbers.h; path = mediapipe/framework/deps/numbers.h; sourceTree = ""; }; - 6BF2BEB1F48893FA00000000 /* graph_tracer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = graph_tracer.h; path = mediapipe/framework/profiler/graph_tracer.h; sourceTree = ""; }; - 6BF2BEB1F4BC7EAB00000000 /* node.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = node.h; path = mediapipe/framework/api2/node.h; sourceTree = ""; }; - 6BF2BEB1F4EF873200000000 /* lib_idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min11.0.a; path = lib_idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB1F500366D00000000 /* ssd_anchors_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ssd_anchors_calculator.cc; path = mediapipe/calculators/tflite/ssd_anchors_calculator.cc; sourceTree = ""; }; - 6BF2BEB1F50E8E8800000000 /* validated_graph_config.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = validated_graph_config.cc; path = mediapipe/framework/validated_graph_config.cc; sourceTree = ""; }; 6BF2BEB1F573FC1600000000 /* FilterGroup.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = FilterGroup.cpp; path = mediapipe/render/core/FilterGroup.cpp; sourceTree = ""; }; - 6BF2BEB1F588AA1C00000000 /* subgraph_expansion.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = subgraph_expansion.h; path = mediapipe/framework/tool/subgraph_expansion.h; sourceTree = ""; }; - 6BF2BEB1F5A7462400000000 /* lib_idx_tensors_to_detections_calculator_39B944A4_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tensors_to_detections_calculator_39B944A4_ios_min11.0.a; path = lib_idx_tensors_to_detections_calculator_39B944A4_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB1F5BD4E1400000000 /* lib_idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min11.0.a; path = lib_idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB1F6DC151700000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/framework/deps/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; 6BF2BEB1F711CCAC00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/util/tflite/operations/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; 6BF2BEB1F7A5F05D00000000 /* dispatch_queue.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = dispatch_queue.h; path = mediapipe/render/core/dispatch_queue.h; sourceTree = ""; }; - 6BF2BEB1F7A9B6EE00000000 /* lib_idx_scheduler_queue_364511B6_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_scheduler_queue_364511B6_ios_min11.0.a; path = lib_idx_scheduler_queue_364511B6_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB1F816D91B00000000 /* file_helpers.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = file_helpers.h; path = mediapipe/framework/deps/file_helpers.h; sourceTree = ""; }; - 6BF2BEB1F879A06600000000 /* lib_idx_location_image_frame_opencv_D6F50F87_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_location_image_frame_opencv_D6F50F87_ios_min15.5.a; path = lib_idx_location_image_frame_opencv_D6F50F87_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB1F9338C6300000000 /* topologicalsorter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = topologicalsorter.h; path = mediapipe/framework/port/topologicalsorter.h; sourceTree = ""; }; - 6BF2BEB1FAAA803400000000 /* type_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = type_util.h; path = mediapipe/framework/tool/type_util.h; sourceTree = ""; }; - 6BF2BEB1FC0D516900000000 /* calculator_graph.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = calculator_graph.cc; path = mediapipe/framework/calculator_graph.cc; sourceTree = ""; }; 6BF2BEB1FCBC06F000000000 /* face_mesh_common.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = face_mesh_common.h; path = mediapipe/render/module/beauty/face_mesh_common.h; sourceTree = ""; }; 6BF2BEB1FCEDD60B00000000 /* CVFramebuffer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = CVFramebuffer.cpp; path = mediapipe/render/core/CVFramebuffer.cpp; sourceTree = ""; }; - 6BF2BEB1FCFCD34500000000 /* monotonic_clock.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = monotonic_clock.h; path = mediapipe/framework/deps/monotonic_clock.h; sourceTree = ""; }; 6BF2BEB1FD2AF7C900000000 /* util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = util.h; path = mediapipe/objc/util.h; sourceTree = ""; }; - 6BF2BEB1FD86B18B00000000 /* singleton.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = singleton.h; path = mediapipe/framework/port/singleton.h; sourceTree = ""; }; - 6BF2BEB1FE21B94600000000 /* delegating_executor.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = delegating_executor.cc; path = mediapipe/framework/delegating_executor.cc; sourceTree = ""; }; - 6BF2BEB1FF5FAD7200000000 /* lib_idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min15.5.a; path = lib_idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1FF68235A00000000 /* dispatch_queue.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dispatch_queue.cpp; path = mediapipe/render/core/dispatch_queue.cpp; sourceTree = ""; }; 6BF2BEB1FFFFBBA500000000 /* header_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = header_util.cc; path = mediapipe/util/header_util.cc; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXGroup section */ - A2FEA73601EBA99700000000 /* deps */ = { - isa = PBXGroup; - children = ( - 6BF2BEB1F6DC151700000000 /* BUILD */, - 6BF2BEB1B319CA1A00000000 /* aligned_malloc_and_free.h */, - 6BF2BEB1130933FA00000000 /* canonical_errors.h */, - 6BF2BEB1DB9D1C2A00000000 /* clock.cc */, - 6BF2BEB1D0C63A8000000000 /* clock.h */, - 6BF2BEB17B0DE23500000000 /* file_helpers.cc */, - 6BF2BEB1F816D91B00000000 /* file_helpers.h */, - 6BF2BEB17CA09C8900000000 /* file_path.cc */, - 6BF2BEB1A7A4F9AD00000000 /* file_path.h */, - 6BF2BEB12DEED72900000000 /* map_util.h */, - 6BF2BEB12828C8A800000000 /* mathutil.h */, - 6BF2BEB1EE3C320400000000 /* monotonic_clock.cc */, - 6BF2BEB1FCFCD34500000000 /* monotonic_clock.h */, - 6BF2BEB19A1CB0AB00000000 /* no_destructor.h */, - 6BF2BEB1F45BDEFB00000000 /* numbers.h */, - 6BF2BEB1DC10729000000000 /* point2.h */, - 6BF2BEB17081A3B200000000 /* re2.h */, - 6BF2BEB1513341B200000000 /* rectangle.h */, - 6BF2BEB14FE9977200000000 /* registration.cc */, - 6BF2BEB143C858F500000000 /* registration.h */, - 6BF2BEB14F3A671800000000 /* registration_token.cc */, - 6BF2BEB19094316600000000 /* registration_token.h */, - 6BF2BEB1412CF91400000000 /* ret_check.cc */, - 6BF2BEB15235D01B00000000 /* ret_check.h */, - 6BF2BEB1296CDA0C00000000 /* safe_int.h */, - 6BF2BEB1AECAD3DF00000000 /* singleton.h */, - 6BF2BEB1179C883F00000000 /* source_location.h */, - 6BF2BEB10F561D5C00000000 /* status.cc */, - 6BF2BEB1277533FB00000000 /* status.h */, - 6BF2BEB16E1A9C2D00000000 /* status_builder.cc */, - 6BF2BEB15FD87EC200000000 /* status_builder.h */, - 6BF2BEB1B79DF59300000000 /* status_macros.h */, - 6BF2BEB16A4641EF00000000 /* strong_int.h */, - 6BF2BEB1653B17CA00000000 /* thread_options.h */, - 6BF2BEB15D6C89BE00000000 /* threadpool.h */, - 6BF2BEB1894A474700000000 /* threadpool_pthread_impl.cc */, - 6BF2BEB1EF2DB52100000000 /* topologicalsorter.cc */, - 6BF2BEB19427457100000000 /* topologicalsorter.h */, - 6BF2BEB112136E6200000000 /* vector.h */, - ); - name = deps; - sourceTree = ""; - }; - A2FEA7360FECADA800000000 /* gpu */ = { - isa = PBXGroup; - children = ( - 6BF2BEB1111CDDC900000000 /* BUILD */, - 6BF2BEB1DF2C96BA00000000 /* MPPGraphGPUData.h */, - 6BF2BEB1C471843E00000000 /* MPPGraphGPUData.mm */, - 6BF2BEB14FF9385800000000 /* MPPMetalHelper.h */, - 6BF2BEB1E2CCEE3B00000000 /* MPPMetalHelper.mm */, - 6BF2BEB10278ED3800000000 /* MPPMetalUtil.h */, - 6BF2BEB186EDD45D00000000 /* MPPMetalUtil.mm */, - 6BF2BEB1AAE7EFCA00000000 /* attachments.h */, - 6BF2BEB1ABAFB45400000000 /* gl_base.h */, - 6BF2BEB1CDB6653400000000 /* gl_calculator_helper.cc */, - 6BF2BEB141065C4600000000 /* gl_calculator_helper.h */, - 6BF2BEB132036C9800000000 /* gl_calculator_helper_impl.h */, - 6BF2BEB1646C577900000000 /* gl_calculator_helper_impl_common.cc */, - 6BF2BEB10E7AA6A100000000 /* gl_context.cc */, - 6BF2BEB10DE77EFE00000000 /* gl_context.h */, - 6BF2BEB15361890F00000000 /* gl_context_eagl.cc */, - 6BF2BEB16DD8CBD900000000 /* gl_context_internal.h */, - 6BF2BEB1664209C000000000 /* gl_simple_shaders.cc */, - 6BF2BEB1F038216200000000 /* gl_simple_shaders.h */, - 6BF2BEB147B18A7C00000000 /* gl_texture_buffer.cc */, - 6BF2BEB17AF70C4100000000 /* gl_texture_buffer.h */, - 6BF2BEB1F413FAAB00000000 /* gl_texture_buffer_pool.cc */, - 6BF2BEB1B4CA759A00000000 /* gl_texture_buffer_pool.h */, - 6BF2BEB19DC0A85E00000000 /* gl_texture_view.cc */, - 6BF2BEB12DC1337600000000 /* gl_texture_view.h */, - 6BF2BEB126DCFA4D00000000 /* gl_thread_collector.h */, - 6BF2BEB18D3D681400000000 /* gpu_buffer.cc */, - 6BF2BEB14635725B00000000 /* gpu_buffer.h */, - 6BF2BEB1C23D5A8900000000 /* gpu_buffer_format.cc */, - 6BF2BEB150AA04AF00000000 /* gpu_buffer_format.h */, - 6BF2BEB11615959C00000000 /* gpu_buffer_multi_pool.cc */, - 6BF2BEB13079E83D00000000 /* gpu_buffer_multi_pool.h */, - 6BF2BEB1045C5E6900000000 /* gpu_buffer_storage.cc */, - 6BF2BEB1BA4C7DED00000000 /* gpu_buffer_storage.h */, - 6BF2BEB1E63D507200000000 /* gpu_buffer_storage_cv_pixel_buffer.cc */, - 6BF2BEB10A15310300000000 /* gpu_buffer_storage_cv_pixel_buffer.h */, - 6BF2BEB121631CB300000000 /* gpu_buffer_storage_image_frame.h */, - 6BF2BEB1D36B7DD000000000 /* gpu_service.cc */, - 6BF2BEB1A640951800000000 /* gpu_service.h */, - 6BF2BEB1C3C01D9000000000 /* gpu_shared_data_internal.cc */, - 6BF2BEB10814BACE00000000 /* gpu_shared_data_internal.h */, - 6BF2BEB1B917097400000000 /* graph_support.h */, - 6BF2BEB1AEFCBBBF00000000 /* image_frame_view.h */, - 6BF2BEB11C310D9F00000000 /* pixel_buffer_pool_util.h */, - 6BF2BEB11D16CB6700000000 /* pixel_buffer_pool_util.mm */, - 6BF2BEB17D2972A300000000 /* shader_util.cc */, - 6BF2BEB1801667D500000000 /* shader_util.h */, - ); - name = gpu; - sourceTree = ""; - }; A2FEA73614054AB100000000 /* subgraphs */ = { isa = PBXGroup; children = ( @@ -1693,29 +632,6 @@ name = subgraphs; sourceTree = ""; }; - A2FEA73618296B7D00000000 /* tensor */ = { - isa = PBXGroup; - children = ( - 6BF2BEB1387DEC3400000000 /* BUILD */, - 6BF2BEB1D924684600000000 /* image_to_tensor_calculator.cc */, - 6BF2BEB137DE7A3C00000000 /* image_to_tensor_converter.h */, - 6BF2BEB1D73414D800000000 /* image_to_tensor_converter_metal.cc */, - 6BF2BEB1E174331500000000 /* image_to_tensor_converter_metal.h */, - 6BF2BEB114E720D900000000 /* image_to_tensor_converter_opencv.cc */, - 6BF2BEB1B7B8021300000000 /* image_to_tensor_converter_opencv.h */, - 6BF2BEB13C0D6D5B00000000 /* image_to_tensor_utils.cc */, - 6BF2BEB120E3AD2000000000 /* image_to_tensor_utils.h */, - 6BF2BEB1E73463BA00000000 /* inference_calculator.cc */, - 6BF2BEB17901AAB000000000 /* inference_calculator.h */, - 6BF2BEB1E600CBCB00000000 /* inference_calculator_cpu.cc */, - 6BF2BEB1C19F2BDB00000000 /* inference_calculator_metal.cc */, - 6BF2BEB121BE9D3000000000 /* tensors_to_detections_calculator.cc */, - 6BF2BEB17354A31A00000000 /* tensors_to_floats_calculator.cc */, - 6BF2BEB18FD5523E00000000 /* tensors_to_landmarks_calculator.cc */, - ); - name = tensor; - sourceTree = ""; - }; A2FEA7361BD7967800000000 /* common */ = { isa = PBXGroup; children = ( @@ -1726,6 +642,15 @@ name = common; sourceTree = ""; }; + A2FEA7361E84DE5500000000 /* face_detection */ = { + isa = PBXGroup; + children = ( + 6BF2BEB1119EB78500000000 /* BUILD */, + 6BF2BEB14E71984800000000 /* face_detection_short_range.tflite */, + ); + name = face_detection; + sourceTree = ""; + }; A2FEA73620B6F45900000000 /* module */ = { isa = PBXGroup; children = ( @@ -1752,17 +677,6 @@ sourceTree = ""; }; A2FEA7362CCC109A00000000 /* tflite */ = { - isa = PBXGroup; - children = ( - 6BF2BEB11548219400000000 /* BUILD */, - 6BF2BEB1F500366D00000000 /* ssd_anchors_calculator.cc */, - 6BF2BEB19280C6F300000000 /* tflite_custom_op_resolver_calculator.cc */, - 6BF2BEB19CEF571A00000000 /* tflite_model_calculator.cc */, - ); - name = tflite; - sourceTree = ""; - }; - A2FEA7362CCC109A00000001 /* tflite */ = { isa = PBXGroup; children = ( 6BF2BEB19448E48100000000 /* BUILD */, @@ -1828,52 +742,6 @@ name = math; sourceTree = ""; }; - A2FEA7364C20727A00000000 /* tool */ = { - isa = PBXGroup; - children = ( - 6BF2BEB18A230BFA00000000 /* BUILD */, - 6BF2BEB18E3AEDD900000000 /* container_util.cc */, - 6BF2BEB1798D3EC300000000 /* container_util.h */, - 6BF2BEB1095EF97200000000 /* fill_packet_set.cc */, - 6BF2BEB16CB3FDF900000000 /* fill_packet_set.h */, - 6BF2BEB179C61E6000000000 /* name_util.cc */, - 6BF2BEB17F8AEE5A00000000 /* name_util.h */, - 6BF2BEB1217E6F9B00000000 /* options_field_util.cc */, - 6BF2BEB1570746DA00000000 /* options_field_util.h */, - 6BF2BEB1BCA5996A00000000 /* options_map.h */, - 6BF2BEB1CF12C0C800000000 /* options_registry.cc */, - 6BF2BEB1DF4B7C9A00000000 /* options_registry.h */, - 6BF2BEB1D822317800000000 /* options_syntax_util.cc */, - 6BF2BEB103D38A7A00000000 /* options_syntax_util.h */, - 6BF2BEB11622036E00000000 /* options_util.cc */, - 6BF2BEB1C5778B6600000000 /* options_util.h */, - 6BF2BEB182E727FD00000000 /* packet_generator_wrapper_calculator.cc */, - 6BF2BEB19343B56C00000000 /* proto_util_lite.cc */, - 6BF2BEB1B46C638600000000 /* proto_util_lite.h */, - 6BF2BEB18DA33BEA00000000 /* sink.cc */, - 6BF2BEB15701696000000000 /* sink.h */, - 6BF2BEB113274D1100000000 /* status_util.cc */, - 6BF2BEB1DF7B922800000000 /* status_util.h */, - 6BF2BEB19F1006A000000000 /* subgraph_expansion.cc */, - 6BF2BEB1F588AA1C00000000 /* subgraph_expansion.h */, - 6BF2BEB1663742CC00000000 /* switch_container.cc */, - 6BF2BEB1DEE2DFFC00000000 /* switch_demux_calculator.cc */, - 6BF2BEB1392E8DE400000000 /* switch_mux_calculator.cc */, - 6BF2BEB1903FFB7900000000 /* tag_map.cc */, - 6BF2BEB1BFB21A6700000000 /* tag_map.h */, - 6BF2BEB1125965EB00000000 /* tag_map_helper.cc */, - 6BF2BEB1F21484F900000000 /* tag_map_helper.h */, - 6BF2BEB13824086F00000000 /* template_expander.cc */, - 6BF2BEB10A25C8B400000000 /* template_expander.h */, - 6BF2BEB1FAAA803400000000 /* type_util.h */, - 6BF2BEB194ACD3D200000000 /* validate.cc */, - 6BF2BEB1B932689500000000 /* validate.h */, - 6BF2BEB1C42F44E800000000 /* validate_name.cc */, - 6BF2BEB14C3F304600000000 /* validate_name.h */, - ); - name = tool; - sourceTree = ""; - }; A2FEA7365B40412100000000 /* core */ = { isa = PBXGroup; children = ( @@ -1976,101 +844,6 @@ sourceTree = ""; }; A2FEA7366242245000000001 /* framework */ = { - isa = PBXGroup; - children = ( - 6BF2BEB1F19C372400000000 /* BUILD */, - A2FEA736B175697000000000 /* api2 */, - 6BF2BEB173FC11FB00000000 /* calculator_base.cc */, - 6BF2BEB1C3BD3DCA00000000 /* calculator_base.h */, - 6BF2BEB112EE194500000000 /* calculator_context.cc */, - 6BF2BEB1CB82B7FB00000000 /* calculator_context.h */, - 6BF2BEB116BDCDE400000000 /* calculator_context_manager.cc */, - 6BF2BEB190FA612200000000 /* calculator_context_manager.h */, - 6BF2BEB18E62014A00000000 /* calculator_contract.cc */, - 6BF2BEB1880AB3FC00000000 /* calculator_contract.h */, - 6BF2BEB17C18B4B200000000 /* calculator_framework.h */, - 6BF2BEB1FC0D516900000000 /* calculator_graph.cc */, - 6BF2BEB137525DD000000000 /* calculator_graph.h */, - 6BF2BEB14CC60F6C00000000 /* calculator_node.cc */, - 6BF2BEB15878665C00000000 /* calculator_node.h */, - 6BF2BEB15D3BB86000000000 /* calculator_registry.h */, - 6BF2BEB1B90D6AD700000000 /* calculator_state.cc */, - 6BF2BEB12DC641F500000000 /* calculator_state.h */, - 6BF2BEB1C5D7FA5E00000000 /* collection.h */, - 6BF2BEB113D967B800000000 /* collection_item_id.cc */, - 6BF2BEB11804FA3400000000 /* collection_item_id.h */, - 6BF2BEB1B27784D400000000 /* counter.h */, - 6BF2BEB1CD235A4400000000 /* counter_factory.cc */, - 6BF2BEB1E23DFAD100000000 /* counter_factory.h */, - 6BF2BEB1FE21B94600000000 /* delegating_executor.cc */, - 6BF2BEB19F67F7B300000000 /* delegating_executor.h */, - 6BF2BEB1535F4B0A00000000 /* demangle.h */, - A2FEA73601EBA99700000000 /* deps */, - 6BF2BEB1953F4C1900000000 /* executor.cc */, - 6BF2BEB19D427FC400000000 /* executor.h */, - A2FEA7369325E62D00000000 /* formats */, - 6BF2BEB103047E7100000000 /* graph_output_stream.cc */, - 6BF2BEB131F66BEE00000000 /* graph_output_stream.h */, - 6BF2BEB1574A245900000000 /* graph_service.h */, - 6BF2BEB12C20ABC800000000 /* graph_service_manager.cc */, - 6BF2BEB128904C9100000000 /* graph_service_manager.h */, - 6BF2BEB1B3D8E01500000000 /* input_side_packet_handler.cc */, - 6BF2BEB18EADB4B800000000 /* input_side_packet_handler.h */, - 6BF2BEB1D4FF55E300000000 /* input_stream.h */, - 6BF2BEB108D791BD00000000 /* input_stream_handler.cc */, - 6BF2BEB1F23F890000000000 /* input_stream_handler.h */, - 6BF2BEB1196F87BE00000000 /* input_stream_manager.cc */, - 6BF2BEB18878AA2E00000000 /* input_stream_manager.h */, - 6BF2BEB15176F86500000000 /* input_stream_shard.cc */, - 6BF2BEB1BDE9DAE500000000 /* input_stream_shard.h */, - 6BF2BEB1676E503E00000000 /* legacy_calculator_support.cc */, - 6BF2BEB122C19C9500000000 /* legacy_calculator_support.h */, - 6BF2BEB111AB9FD300000000 /* mediapipe_profiling.h */, - 6BF2BEB11D502F6200000000 /* output_side_packet.h */, - 6BF2BEB1D265CD3E00000000 /* output_side_packet_impl.cc */, - 6BF2BEB167ED182A00000000 /* output_side_packet_impl.h */, - 6BF2BEB1E4E7AC2300000000 /* output_stream.h */, - 6BF2BEB1BAE062CD00000000 /* output_stream_handler.cc */, - 6BF2BEB1A5426DFA00000000 /* output_stream_handler.h */, - 6BF2BEB12467AA1E00000000 /* output_stream_manager.cc */, - 6BF2BEB17E824DDD00000000 /* output_stream_manager.h */, - 6BF2BEB184E8641C00000000 /* output_stream_poller.h */, - 6BF2BEB1051CE57300000000 /* output_stream_shard.cc */, - 6BF2BEB159A4B20700000000 /* output_stream_shard.h */, - 6BF2BEB15369E8AC00000000 /* packet.cc */, - 6BF2BEB12780166200000000 /* packet.h */, - 6BF2BEB17D8559CA00000000 /* packet_generator.h */, - 6BF2BEB14EA6318000000000 /* packet_generator_graph.cc */, - 6BF2BEB1869D07B400000000 /* packet_generator_graph.h */, - 6BF2BEB11F031A2300000000 /* packet_set.h */, - 6BF2BEB1EC826FBE00000000 /* packet_type.cc */, - 6BF2BEB1A688B9F200000000 /* packet_type.h */, - 6BF2BEB15BDB816A00000000 /* platform_specific_profiling.h */, - A2FEA736C8B0BA2700000000 /* port */, - 6BF2BEB1C3DCE75400000000 /* port.h */, - A2FEA736EFE2DD4800000000 /* profiler */, - 6BF2BEB12418B90200000000 /* scheduler.cc */, - 6BF2BEB16B9D59FB00000000 /* scheduler.h */, - 6BF2BEB1A3BD02C100000000 /* scheduler_queue.cc */, - 6BF2BEB10EF5627700000000 /* scheduler_queue.h */, - 6BF2BEB1AFFDFEDD00000000 /* scheduler_shared.h */, - 6BF2BEB19322F49600000000 /* status_handler.h */, - A2FEA736F804838200000000 /* stream_handler */, - 6BF2BEB1CB59887700000000 /* subgraph.cc */, - 6BF2BEB14AB5830800000000 /* subgraph.h */, - 6BF2BEB1CC1CEC7400000000 /* thread_pool_executor.cc */, - 6BF2BEB1160C2A4100000000 /* thread_pool_executor.h */, - 6BF2BEB10DAD0F4C00000000 /* timestamp.cc */, - 6BF2BEB1808B066100000000 /* timestamp.h */, - A2FEA7364C20727A00000000 /* tool */, - 6BF2BEB1D3C1DEA500000000 /* type_map.h */, - 6BF2BEB1F50E8E8800000000 /* validated_graph_config.cc */, - 6BF2BEB1E95EE0B700000000 /* validated_graph_config.h */, - ); - name = framework; - sourceTree = ""; - }; - A2FEA7366242245000000002 /* framework */ = { isa = PBXGroup; children = ( 6BF2BEB116536C5000000000 /* BUILD */, @@ -2110,12 +883,6 @@ A2FEA7367AA70EEE00000000 /* Indexer */ = { isa = PBXGroup; children = ( - 6BF2BEB11CA1FEB600000000 /* lib_idx_MPPGraphGPUData_39C9C70C_ios_min11.0.a */, - 6BF2BEB1A59F4B3400000000 /* lib_idx_MPPGraphGPUData_39C9C70C_ios_min15.5.a */, - 6BF2BEB15E15594A00000000 /* lib_idx_MPPMetalHelper_D24F76A1_ios_min11.0.a */, - 6BF2BEB15BDC4E2C00000000 /* lib_idx_MPPMetalHelper_D24F76A1_ios_min15.5.a */, - 6BF2BEB13C41172600000000 /* lib_idx_MPPMetalUtil_455751A0_ios_min11.0.a */, - 6BF2BEB13F32CBF200000000 /* lib_idx_MPPMetalUtil_455751A0_ios_min15.5.a */, 6BF2BEB1B38F435A00000000 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min11.0.a */, 6BF2BEB13FC2509200000000 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min15.5.a */, 6BF2BEB15656FB7600000000 /* lib_idx_annotation_overlay_calculator_D98E9275_ios_min11.0.a */, @@ -2130,44 +897,14 @@ 6BF2BEB1C9C325FA00000000 /* lib_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min15.5.a */, 6BF2BEB1E22D8E4E00000000 /* lib_idx_cpu_op_resolver_519CBACD_ios_min11.0.a */, 6BF2BEB135330E2600000000 /* lib_idx_cpu_op_resolver_519CBACD_ios_min15.5.a */, + 6BF2BEB1311D3FFA00000000 /* lib_idx_cpu_util_C9677097_ios_min11.0.a */, + 6BF2BEB16F17AAC200000000 /* lib_idx_cpu_util_C9677097_ios_min15.5.a */, 6BF2BEB126D0D2E600000000 /* lib_idx_detection_projection_calculator_6C26583E_ios_min11.0.a */, 6BF2BEB1D488EF1800000000 /* lib_idx_detection_projection_calculator_6C26583E_ios_min15.5.a */, - 6BF2BEB161D5A49A00000000 /* lib_idx_file_path_E61EA0A1_ios_min11.0.a */, - 6BF2BEB1B0FBE87A00000000 /* lib_idx_file_path_E61EA0A1_ios_min15.5.a */, - 6BF2BEB1EDF6BDAE00000000 /* lib_idx_gl_calculator_helper_DC51F13C_ios_min11.0.a */, - 6BF2BEB16C46880800000000 /* lib_idx_gl_calculator_helper_DC51F13C_ios_min15.5.a */, - 6BF2BEB10687813A00000000 /* lib_idx_gl_simple_shaders_CB7AD146_ios_min11.0.a */, - 6BF2BEB1A6AE93A200000000 /* lib_idx_gl_simple_shaders_CB7AD146_ios_min15.5.a */, - 6BF2BEB1902E183E00000000 /* lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_0402C5B7_ios_min11.0.a */, - 6BF2BEB1B988349400000000 /* lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_0402C5B7_ios_min15.5.a */, - 6BF2BEB10F66ADE200000000 /* lib_idx_gpu_buffer_storage_gpu_buffer_format_06E221FF_ios_min11.0.a */, - 6BF2BEB12E3CBFE400000000 /* lib_idx_gpu_buffer_storage_gpu_buffer_format_06E221FF_ios_min15.5.a */, - 6BF2BEB1E25C746E00000000 /* lib_idx_image_frame_graph_tracer_4E004B23_ios_min11.0.a */, - 6BF2BEB15E75465E00000000 /* lib_idx_image_frame_graph_tracer_4E004B23_ios_min15.5.a */, - 6BF2BEB1D0386F0200000000 /* lib_idx_image_gl_context_gpu_buffer_multi_pool_99A08626_ios_min11.0.a */, - 6BF2BEB106B68BF400000000 /* lib_idx_image_gl_context_gpu_buffer_multi_pool_99A08626_ios_min15.5.a */, - 6BF2BEB1112804BA00000000 /* lib_idx_image_opencv_9E4E8A87_ios_min11.0.a */, - 6BF2BEB1A8F5B73600000000 /* lib_idx_image_opencv_9E4E8A87_ios_min15.5.a */, - 6BF2BEB10194F5B200000000 /* lib_idx_image_properties_calculator_gpu_service_56DC0B61_ios_min11.0.a */, - 6BF2BEB1DFD99BDE00000000 /* lib_idx_image_properties_calculator_gpu_service_56DC0B61_ios_min15.5.a */, - 6BF2BEB1329B39B200000000 /* lib_idx_image_to_tensor_calculator_FF109E68_ios_min11.0.a */, - 6BF2BEB1310526FE00000000 /* lib_idx_image_to_tensor_calculator_FF109E68_ios_min15.5.a */, - 6BF2BEB1062DDCBE00000000 /* lib_idx_image_to_tensor_converter_metal_4060E9DC_ios_min11.0.a */, - 6BF2BEB14E78690800000000 /* lib_idx_image_to_tensor_converter_metal_4060E9DC_ios_min15.5.a */, - 6BF2BEB175EE83F000000000 /* lib_idx_image_to_tensor_converter_opencv_22266321_ios_min11.0.a */, - 6BF2BEB146128B7C00000000 /* lib_idx_image_to_tensor_converter_opencv_22266321_ios_min15.5.a */, - 6BF2BEB1F5BD4E1400000000 /* lib_idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min11.0.a */, - 6BF2BEB177AE156000000000 /* lib_idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min15.5.a */, - 6BF2BEB138ACA16200000000 /* lib_idx_inference_calculator_interface_inference_calculator_cpu_EC7FC897_ios_min11.0.a */, - 6BF2BEB19E6C836600000000 /* lib_idx_inference_calculator_interface_inference_calculator_cpu_EC7FC897_ios_min15.5.a */, - 6BF2BEB1481B3A4200000000 /* lib_idx_inference_calculator_metal_9450E505_ios_min11.0.a */, - 6BF2BEB148CB541600000000 /* lib_idx_inference_calculator_metal_9450E505_ios_min15.5.a */, - 6BF2BEB12D97516200000000 /* lib_idx_location_image_frame_opencv_D6F50F87_ios_min11.0.a */, - 6BF2BEB1F879A06600000000 /* lib_idx_location_image_frame_opencv_D6F50F87_ios_min15.5.a */, + 6BF2BEB1D89D727E00000000 /* lib_idx_end_loop_calculator_AADF2B85_ios_min11.0.a */, + 6BF2BEB185A9B3FE00000000 /* lib_idx_end_loop_calculator_AADF2B85_ios_min15.5.a */, 6BF2BEB1042285A000000000 /* lib_idx_math_68C63536_ios_min11.0.a */, 6BF2BEB1D93FD90600000000 /* lib_idx_math_68C63536_ios_min15.5.a */, - 6BF2BEB16F3388EE00000000 /* lib_idx_matrix_E57ACF41_ios_min11.0.a */, - 6BF2BEB1BB36203600000000 /* lib_idx_matrix_E57ACF41_ios_min15.5.a */, 6BF2BEB1D6736AD800000000 /* lib_idx_max_unpooling_max_pool_argmax_615F909D_ios_min11.0.a */, 6BF2BEB1616461B400000000 /* lib_idx_max_unpooling_max_pool_argmax_615F909D_ios_min15.5.a */, 6BF2BEB105A13E0A00000000 /* lib_idx_mediapipe_framework_ios_C158E828_ios_min11.0.a */, @@ -2178,52 +915,26 @@ 6BF2BEB1DE300BF600000000 /* lib_idx_olamodule_common_library_63E72567_ios_min15.5.a */, 6BF2BEB12CA286D000000000 /* lib_idx_op_resolver_0836C983_ios_min11.0.a */, 6BF2BEB10343A59400000000 /* lib_idx_op_resolver_0836C983_ios_min15.5.a */, - 6BF2BEB13B97637C00000000 /* lib_idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min11.0.a */, - 6BF2BEB11338C3A000000000 /* lib_idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min15.5.a */, - 6BF2BEB1089308C200000000 /* lib_idx_pixel_buffer_pool_util_F1B36E38_ios_min11.0.a */, - 6BF2BEB115B4CC0800000000 /* lib_idx_pixel_buffer_pool_util_F1B36E38_ios_min15.5.a */, - 6BF2BEB140A1AF9000000000 /* lib_idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min11.0.a */, - 6BF2BEB1CC15ACD800000000 /* lib_idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min15.5.a */, - 6BF2BEB15757E2E000000000 /* lib_idx_profiler_resource_util_35C39BA3_ios_min11.0.a */, - 6BF2BEB12CFA860400000000 /* lib_idx_profiler_resource_util_35C39BA3_ios_min15.5.a */, - 6BF2BEB196E75F6C00000000 /* lib_idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min11.0.a */, - 6BF2BEB1C0AA537800000000 /* lib_idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min15.5.a */, + 6BF2BEB1E88ABD0C00000000 /* lib_idx_previous_loopback_calculator_header_util_D60754F6_ios_min11.0.a */, + 6BF2BEB12B5DD40E00000000 /* lib_idx_previous_loopback_calculator_header_util_D60754F6_ios_min15.5.a */, + 6BF2BEB10F69F5F200000000 /* lib_idx_rectangle_util_BC608102_ios_min11.0.a */, + 6BF2BEB1A374D54C00000000 /* lib_idx_rectangle_util_BC608102_ios_min15.5.a */, + 6BF2BEB12E6EE1D200000000 /* lib_idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min11.0.a */, + 6BF2BEB1E3F4AD9A00000000 /* lib_idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min15.5.a */, 6BF2BEB1E9CE10DC00000000 /* lib_idx_resource_util_C5C5DB93_ios_min11.0.a */, 6BF2BEB12E009AA400000000 /* lib_idx_resource_util_C5C5DB93_ios_min15.5.a */, - 6BF2BEB1F7A9B6EE00000000 /* lib_idx_scheduler_queue_364511B6_ios_min11.0.a */, - 6BF2BEB12E3487DE00000000 /* lib_idx_scheduler_queue_364511B6_ios_min15.5.a */, - 6BF2BEB107671C9600000000 /* lib_idx_shader_util_C047EBB4_ios_min11.0.a */, - 6BF2BEB1D65644E600000000 /* lib_idx_shader_util_C047EBB4_ios_min15.5.a */, 6BF2BEB115B04C8C00000000 /* lib_idx_split_vector_calculator_ED1EBC41_ios_min11.0.a */, 6BF2BEB1A384020200000000 /* lib_idx_split_vector_calculator_ED1EBC41_ios_min15.5.a */, - 6BF2BEB1EDDD3E1000000000 /* lib_idx_tensor_7303F5EA_ios_min11.0.a */, - 6BF2BEB147F7AD0200000000 /* lib_idx_tensor_7303F5EA_ios_min15.5.a */, - 6BF2BEB1F5A7462400000000 /* lib_idx_tensors_to_detections_calculator_39B944A4_ios_min11.0.a */, - 6BF2BEB11925DF0400000000 /* lib_idx_tensors_to_detections_calculator_39B944A4_ios_min15.5.a */, - 6BF2BEB1ECAC14B600000000 /* lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_717D4ABA_ios_min11.0.a */, - 6BF2BEB13D92A50E00000000 /* lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_717D4ABA_ios_min15.5.a */, - 6BF2BEB1B9E631C400000000 /* lib_idx_tflite_custom_op_resolver_calculator_772D286F_ios_min11.0.a */, - 6BF2BEB1B47EA6D400000000 /* lib_idx_tflite_custom_op_resolver_calculator_772D286F_ios_min15.5.a */, - 6BF2BEB1775B508800000000 /* lib_idx_tflite_model_calculator_end_loop_calculator_38D3CDB2_ios_min11.0.a */, - 6BF2BEB1C94D4D4E00000000 /* lib_idx_tflite_model_calculator_end_loop_calculator_38D3CDB2_ios_min15.5.a */, 6BF2BEB17278B65600000000 /* lib_idx_tflite_model_loader_254BEB33_ios_min11.0.a */, 6BF2BEB17982938200000000 /* lib_idx_tflite_model_loader_254BEB33_ios_min15.5.a */, - 6BF2BEB19B1FC05C00000000 /* lib_idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min11.0.a */, - 6BF2BEB14D3C632E00000000 /* lib_idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min15.5.a */, - 6BF2BEB1E29809CA00000000 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_87112A87_ios_min11.0.a */, - 6BF2BEB121CFE74A00000000 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_87112A87_ios_min15.5.a */, - 6BF2BEB121F5530600000000 /* lib_idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min11.0.a */, - 6BF2BEB1FF5FAD7200000000 /* lib_idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min15.5.a */, + 6BF2BEB13E6E92F600000000 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min11.0.a */, + 6BF2BEB1F180FE8800000000 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min15.5.a */, 6BF2BEB1C76D25EE00000000 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min11.0.a */, 6BF2BEB1258576A800000000 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min15.5.a */, 6BF2BEB1CAFF3BDC00000000 /* lib_idx_transpose_conv_bias_E3459F40_ios_min11.0.a */, 6BF2BEB17C69A2E400000000 /* lib_idx_transpose_conv_bias_E3459F40_ios_min15.5.a */, - 6BF2BEB1F4EF873200000000 /* lib_idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min11.0.a */, - 6BF2BEB1CF0EECC200000000 /* lib_idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min15.5.a */, - 6BF2BEB1DBA1F4D600000000 /* lib_idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min11.0.a */, - 6BF2BEB1CC2F532800000000 /* lib_idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min15.5.a */, - 6BF2BEB1F126859800000000 /* lib_idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min11.0.a */, - 6BF2BEB16F07E71A00000000 /* lib_idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min15.5.a */, + 6BF2BEB17384850E00000000 /* lib_idx_util_C76AD427_ios_min11.0.a */, + 6BF2BEB110B1FD6E00000000 /* lib_idx_util_C76AD427_ios_min15.5.a */, ); name = Indexer; sourceTree = ""; @@ -2242,10 +953,6 @@ isa = PBXGroup; children = ( A2FEA7365B40412100000000 /* core */, - A2FEA736ACB09C6A00000000 /* image */, - A2FEA736A353DF5F00000000 /* internal */, - A2FEA73618296B7D00000000 /* tensor */, - A2FEA7362CCC109A00000000 /* tflite */, A2FEA736FC640C8700000000 /* util */, ); name = calculators; @@ -2270,32 +977,6 @@ path = ../../../../../..; sourceTree = SOURCE_ROOT; }; - A2FEA7369325E62D00000000 /* formats */ = { - isa = PBXGroup; - children = ( - 6BF2BEB1BD71A6CA00000000 /* BUILD */, - A2FEA736FBD5991300000000 /* annotation */, - 6BF2BEB1B6988F9900000000 /* image.cc */, - 6BF2BEB16D290D2200000000 /* image.h */, - 6BF2BEB16DADEE7000000000 /* image_frame.cc */, - 6BF2BEB1D41C8E5500000000 /* image_frame.h */, - 6BF2BEB1D3E5087100000000 /* image_frame_opencv.cc */, - 6BF2BEB10BDFC87C00000000 /* image_frame_opencv.h */, - 6BF2BEB1A54334CD00000000 /* image_opencv.cc */, - 6BF2BEB1E2A494C100000000 /* image_opencv.h */, - 6BF2BEB104BA59E200000000 /* location.cc */, - 6BF2BEB16FFC9AEA00000000 /* location.h */, - 6BF2BEB1224D079A00000000 /* matrix.cc */, - 6BF2BEB115582B1B00000000 /* matrix.h */, - A2FEA736E550C61200000000 /* object_detection */, - 6BF2BEB1ABE2180800000000 /* tensor.cc */, - 6BF2BEB14C89FC5100000000 /* tensor.h */, - 6BF2BEB1A9411D1C00000000 /* tensor_ahwb.cc */, - 6BF2BEB158D6475700000000 /* video_stream_header.h */, - ); - name = formats; - sourceTree = ""; - }; A2FEA73698071DC200000000 /* filters */ = { isa = PBXGroup; children = ( @@ -2332,24 +1013,6 @@ name = operations; sourceTree = ""; }; - A2FEA736A353DF5F00000000 /* internal */ = { - isa = PBXGroup; - children = ( - 6BF2BEB174D2AB4700000000 /* BUILD */, - 6BF2BEB1E6069BD500000000 /* callback_packet_calculator.cc */, - ); - name = internal; - sourceTree = ""; - }; - A2FEA736ACB09C6A00000000 /* image */ = { - isa = PBXGroup; - children = ( - 6BF2BEB155AD4EF300000000 /* BUILD */, - 6BF2BEB1892D264500000000 /* image_properties_calculator.cc */, - ); - name = image; - sourceTree = ""; - }; A2FEA736AF64A47A00000000 /* mediapipe */ = { isa = PBXGroup; children = ( @@ -2362,9 +1025,8 @@ isa = PBXGroup; children = ( A2FEA7368B897D7D00000000 /* calculators */, - A2FEA7366242245000000001 /* framework */, - A2FEA7360FECADA800000000 /* gpu */, A2FEA73660C4D6AA00000000 /* graphs */, + A2FEA736EFEBFE9300000000 /* modules */, A2FEA736F5B39ADD00000000 /* objc */, A2FEA73631B5716A00000001 /* render */, A2FEA736FC640C8700000001 /* util */, @@ -2372,59 +1034,6 @@ name = mediapipe; sourceTree = ""; }; - A2FEA736B175697000000000 /* api2 */ = { - isa = PBXGroup; - children = ( - 6BF2BEB1160DA88A00000000 /* BUILD */, - 6BF2BEB1A0D4CED400000000 /* const_str.h */, - 6BF2BEB131C8E4F500000000 /* contract.h */, - 6BF2BEB1EFCD23DE00000000 /* node.cc */, - 6BF2BEB1F4BC7EAB00000000 /* node.h */, - 6BF2BEB1C0242BD100000000 /* packet.cc */, - 6BF2BEB164C0D87E00000000 /* packet.h */, - 6BF2BEB13F7DE84500000000 /* port.h */, - 6BF2BEB15C3C5FA300000000 /* tag.h */, - 6BF2BEB121C1C8AF00000000 /* tuple.h */, - ); - name = api2; - sourceTree = ""; - }; - A2FEA736C8B0BA2700000000 /* port */ = { - isa = PBXGroup; - children = ( - 6BF2BEB1C33800FF00000000 /* BUILD */, - 6BF2BEB1EA7C050B00000000 /* advanced_proto_inc.h */, - 6BF2BEB1E04C93CE00000000 /* advanced_proto_lite_inc.h */, - 6BF2BEB18303122300000000 /* aligned_malloc_and_free.h */, - 6BF2BEB10884202400000000 /* any_proto.h */, - 6BF2BEB160B7CC3600000000 /* canonical_errors.h */, - 6BF2BEB1880372FF00000000 /* core_proto_inc.h */, - 6BF2BEB18197476100000000 /* file_helpers.h */, - 6BF2BEB15DDBD6E200000000 /* integral_types.h */, - 6BF2BEB19D245EEB00000000 /* logging.h */, - 6BF2BEB120A93DB300000000 /* map_util.h */, - 6BF2BEB118FBE5EA00000000 /* numbers.h */, - 6BF2BEB1693BCA6300000000 /* opencv_core_inc.h */, - 6BF2BEB11DC5DE2F00000000 /* opencv_imgproc_inc.h */, - 6BF2BEB1DC63EA9700000000 /* point2.h */, - 6BF2BEB1C74C726D00000000 /* port.h */, - 6BF2BEB11C7B0BA600000000 /* proto_ns.h */, - 6BF2BEB1E7A8AC5300000000 /* re2.h */, - 6BF2BEB16C0753C400000000 /* rectangle.h */, - 6BF2BEB180714D5F00000000 /* ret_check.h */, - 6BF2BEB1FD86B18B00000000 /* singleton.h */, - 6BF2BEB18201663E00000000 /* source_location.h */, - 6BF2BEB1E3DAC1ED00000000 /* status.h */, - 6BF2BEB1860C822F00000000 /* status_builder.h */, - 6BF2BEB174B3479000000000 /* status_macros.h */, - 6BF2BEB1994724E200000000 /* statusor.h */, - 6BF2BEB1B2FBB04C00000000 /* threadpool.h */, - 6BF2BEB1F9338C6300000000 /* topologicalsorter.h */, - 6BF2BEB1A160E81200000000 /* vector.h */, - ); - name = port; - sourceTree = ""; - }; A2FEA736CF167CF800000000 /* ios */ = { isa = PBXGroup; children = ( @@ -2436,11 +1045,20 @@ A2FEA736CF167CF800000001 /* ios */ = { isa = PBXGroup; children = ( - A2FEA7366242245000000002 /* framework */, + A2FEA7366242245000000001 /* framework */, ); name = ios; sourceTree = ""; }; + A2FEA736CFC4601700000000 /* face_landmark */ = { + isa = PBXGroup; + children = ( + 6BF2BEB19E1406F200000000 /* BUILD */, + 6BF2BEB1185F0D7700000000 /* face_landmark_with_attention.tflite */, + ); + name = face_landmark; + sourceTree = ""; + }; A2FEA736DF32B42C00000000 /* x */ = { isa = PBXGroup; children = ( @@ -2457,33 +1075,13 @@ name = x; sourceTree = ""; }; - A2FEA736E550C61200000000 /* object_detection */ = { + A2FEA736EFEBFE9300000000 /* modules */ = { isa = PBXGroup; children = ( - 6BF2BEB10DF9F37000000000 /* BUILD */, + A2FEA7361E84DE5500000000 /* face_detection */, + A2FEA736CFC4601700000000 /* face_landmark */, ); - name = object_detection; - sourceTree = ""; - }; - A2FEA736EFE2DD4800000000 /* profiler */ = { - isa = PBXGroup; - children = ( - 6BF2BEB18222E1E800000000 /* BUILD */, - 6BF2BEB13C8D040500000000 /* circular_buffer.h */, - 6BF2BEB1D90020AA00000000 /* gl_context_profiler.cc */, - 6BF2BEB1BAF6D7FB00000000 /* graph_profiler.cc */, - 6BF2BEB1AD25FB3D00000000 /* graph_profiler.h */, - 6BF2BEB1CF0DF08C00000000 /* graph_tracer.cc */, - 6BF2BEB1F48893FA00000000 /* graph_tracer.h */, - 6BF2BEB19F6BE74900000000 /* profiler_resource_util.h */, - 6BF2BEB1AC57DDE300000000 /* profiler_resource_util_common.cc */, - 6BF2BEB15F87272300000000 /* profiler_resource_util_ios.cc */, - 6BF2BEB125F3DD4600000000 /* sharded_map.h */, - 6BF2BEB112692A1500000000 /* trace_buffer.h */, - 6BF2BEB19CBDC5A500000000 /* trace_builder.cc */, - 6BF2BEB1DD9AD99400000000 /* trace_builder.h */, - ); - name = profiler; + name = modules; sourceTree = ""; }; A2FEA736F4E8108700000000 /* bazel-tulsi-includes */ = { @@ -2512,28 +1110,6 @@ name = objc; sourceTree = ""; }; - A2FEA736F804838200000000 /* stream_handler */ = { - isa = PBXGroup; - children = ( - 6BF2BEB128F9C32900000000 /* BUILD */, - 6BF2BEB198F8470300000000 /* default_input_stream_handler.cc */, - 6BF2BEB1C7D7F55E00000000 /* default_input_stream_handler.h */, - 6BF2BEB1176DF12500000000 /* fixed_size_input_stream_handler.cc */, - 6BF2BEB1A3360C7800000000 /* immediate_input_stream_handler.cc */, - 6BF2BEB179275DA200000000 /* in_order_output_stream_handler.cc */, - 6BF2BEB1883C821000000000 /* in_order_output_stream_handler.h */, - ); - name = stream_handler; - sourceTree = ""; - }; - A2FEA736FBD5991300000000 /* annotation */ = { - isa = PBXGroup; - children = ( - 6BF2BEB1E77FEC5500000000 /* BUILD */, - ); - name = annotation; - sourceTree = ""; - }; A2FEA736FC640C8700000000 /* util */ = { isa = PBXGroup; children = ( @@ -2581,7 +1157,7 @@ 6BF2BEB13F7B43FC00000000 /* resource_util_apple.cc */, 6BF2BEB1A44A9C2600000000 /* resource_util_custom.h */, 6BF2BEB11251C84200000000 /* resource_util_internal.h */, - A2FEA7362CCC109A00000001 /* tflite */, + A2FEA7362CCC109A00000000 /* tflite */, ); name = util; sourceTree = ""; @@ -2606,31 +1182,11 @@ /* End PBXLegacyTarget section */ /* Begin PBXNativeTarget section */ - F2FE34CE0173533000000000 /* _idx_tensors_to_detections_calculator_39B944A4_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF508981699FA00000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_detections_calculator_39B944A4_ios_min11.0" */; - buildPhases = ( - 4A9C8A580000000000000068 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A192D58FB00000000 /* PBXTargetDependency */, - 285B8B9ABEE3CE7500000000 /* PBXTargetDependency */, - 285B8B9AC7F9A94500000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - ); - name = _idx_tensors_to_detections_calculator_39B944A4_ios_min11.0; - productName = _idx_tensors_to_detections_calculator_39B944A4_ios_min11.0; - productReference = 6BF2BEB1F5A7462400000000 /* lib_idx_tensors_to_detections_calculator_39B944A4_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; F2FE34CE019362DC00000000 /* _idx_op_resolver_0836C983_ios_min11.0 */ = { isa = PBXNativeTarget; buildConfigurationList = 84EFF5082E8F9F1400000000 /* Build configuration list for PBXNativeTarget "_idx_op_resolver_0836C983_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000064 /* Sources */, + 4A9C8A580000000000000026 /* Sources */, ); buildRules = ( ); @@ -2642,112 +1198,37 @@ productReference = 6BF2BEB12CA286D000000000 /* lib_idx_op_resolver_0836C983_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE043D6EB800000000 /* _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_0402C5B7_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF5083BDB1A3300000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_0402C5B7_ios_min11.0" */; - buildPhases = ( - 4A9C8A58000000000000000F /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9AAB070CC500000000 /* PBXTargetDependency */, - 285B8B9AAB070CC500000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, - 285B8B9A71A9D19F00000000 /* PBXTargetDependency */, - 285B8B9A4098134F00000000 /* PBXTargetDependency */, - 285B8B9A62520DF700000000 /* PBXTargetDependency */, - ); - name = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_0402C5B7_ios_min11.0; - productName = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_0402C5B7_ios_min11.0; - productReference = 6BF2BEB1902E183E00000000 /* lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_0402C5B7_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - F2FE34CE0552442E00000000 /* _idx_pixel_buffer_pool_util_F1B36E38_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF5084E652AAB00000000 /* Build configuration list for PBXNativeTarget "_idx_pixel_buffer_pool_util_F1B36E38_ios_min11.0" */; - buildPhases = ( - 4A9C8A58000000000000000A /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - ); - name = _idx_pixel_buffer_pool_util_F1B36E38_ios_min11.0; - productName = _idx_pixel_buffer_pool_util_F1B36E38_ios_min11.0; - productReference = 6BF2BEB1089308C200000000 /* lib_idx_pixel_buffer_pool_util_F1B36E38_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; F2FE34CE06501FEA00000000 /* _idx_split_vector_calculator_ED1EBC41_ios_min15.5 */ = { isa = PBXNativeTarget; buildConfigurationList = 84EFF5089042845D00000000 /* Build configuration list for PBXNativeTarget "_idx_split_vector_calculator_ED1EBC41_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000067 /* Sources */, + 4A9C8A58000000000000002F /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A486DB1DD00000000 /* PBXTargetDependency */, 285B8B9A9B64E5B500000000 /* PBXTargetDependency */, - 285B8B9A148AEA4700000000 /* PBXTargetDependency */, ); name = _idx_split_vector_calculator_ED1EBC41_ios_min15.5; productName = _idx_split_vector_calculator_ED1EBC41_ios_min15.5; productReference = 6BF2BEB1A384020200000000 /* lib_idx_split_vector_calculator_ED1EBC41_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE091FB26A00000000 /* _idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min11.0 */ = { + F2FE34CE07268A4800000000 /* _idx_previous_loopback_calculator_header_util_D60754F6_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF508DF63089600000000 /* Build configuration list for PBXNativeTarget "_idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min11.0" */; + buildConfigurationList = 84EFF5089320C55E00000000 /* Build configuration list for PBXNativeTarget "_idx_previous_loopback_calculator_header_util_D60754F6_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000000C /* Sources */, + 4A9C8A580000000000000029 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9A48F8627F00000000 /* PBXTargetDependency */, - 285B8B9A80D4856F00000000 /* PBXTargetDependency */, - 285B8B9A71A9D19F00000000 /* PBXTargetDependency */, - 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, - 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, - 285B8B9A4098134F00000000 /* PBXTargetDependency */, - 285B8B9A71A9D19F00000000 /* PBXTargetDependency */, - 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, - 285B8B9A80D4856F00000000 /* PBXTargetDependency */, - 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, - 285B8B9A80D4856F00000000 /* PBXTargetDependency */, - 285B8B9ACC49096B00000000 /* PBXTargetDependency */, - 285B8B9A80D4856F00000000 /* PBXTargetDependency */, ); - name = _idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min11.0; - productName = _idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min11.0; - productReference = 6BF2BEB1F5BD4E1400000000 /* lib_idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - F2FE34CE0BF0E74000000000 /* _idx_MPPGraphGPUData_39C9C70C_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF508DC607B3500000000 /* Build configuration list for PBXNativeTarget "_idx_MPPGraphGPUData_39C9C70C_ios_min15.5" */; - buildPhases = ( - 4A9C8A580000000000000010 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, - 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, - 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, - ); - name = _idx_MPPGraphGPUData_39C9C70C_ios_min15.5; - productName = _idx_MPPGraphGPUData_39C9C70C_ios_min15.5; - productReference = 6BF2BEB1A59F4B3400000000 /* lib_idx_MPPGraphGPUData_39C9C70C_ios_min15.5.a */; + name = _idx_previous_loopback_calculator_header_util_D60754F6_ios_min15.5; + productName = _idx_previous_loopback_calculator_header_util_D60754F6_ios_min15.5; + productReference = 6BF2BEB12B5DD40E00000000 /* lib_idx_previous_loopback_calculator_header_util_D60754F6_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; F2FE34CE0C5C7AFE00000000 /* OlaFaceUnityFramework */ = { @@ -2766,28 +1247,11 @@ productReference = 6BF2BEB1861FE90A00000000 /* OlaFaceUnityFramework.framework */; productType = "com.apple.product-type.framework"; }; - F2FE34CE0F49CEEC00000000 /* _idx_MPPMetalUtil_455751A0_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF508BE819FF200000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalUtil_455751A0_ios_min15.5" */; - buildPhases = ( - 4A9C8A580000000000000025 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9ACC596BC100000000 /* PBXTargetDependency */, - ); - name = _idx_MPPMetalUtil_455751A0_ios_min15.5; - productName = _idx_MPPMetalUtil_455751A0_ios_min15.5; - productReference = 6BF2BEB13F32CBF200000000 /* lib_idx_MPPMetalUtil_455751A0_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; F2FE34CE0F58F30800000000 /* _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min15.5 */ = { isa = PBXNativeTarget; buildConfigurationList = 84EFF5083C476C6A00000000 /* Build configuration list for PBXNativeTarget "_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000004B /* Sources */, + 4A9C8A58000000000000001B /* Sources */, ); buildRules = ( ); @@ -2799,47 +1263,27 @@ productReference = 6BF2BEB1258576A800000000 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE12002F2C00000000 /* _idx_image_properties_calculator_gpu_service_56DC0B61_ios_min11.0 */ = { + F2FE34CE10832CE000000000 /* _idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF508D42124C800000000 /* Build configuration list for PBXNativeTarget "_idx_image_properties_calculator_gpu_service_56DC0B61_ios_min11.0" */; + buildConfigurationList = 84EFF508CC419B8300000000 /* Build configuration list for PBXNativeTarget "_idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min11.0" */; buildPhases = ( - 4A9C8A58000000000000002B /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A4098134F00000000 /* PBXTargetDependency */, - 285B8B9A62520DF700000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9A043D6EB900000000 /* PBXTargetDependency */, - ); - name = _idx_image_properties_calculator_gpu_service_56DC0B61_ios_min11.0; - productName = _idx_image_properties_calculator_gpu_service_56DC0B61_ios_min11.0; - productReference = 6BF2BEB10194F5B200000000 /* lib_idx_image_properties_calculator_gpu_service_56DC0B61_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - F2FE34CE148AEA4600000000 /* _idx_matrix_E57ACF41_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF50812D5985D00000000 /* Build configuration list for PBXNativeTarget "_idx_matrix_E57ACF41_ios_min15.5" */; - buildPhases = ( - 4A9C8A580000000000000043 /* Sources */, + 4A9C8A580000000000000005 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, ); - name = _idx_matrix_E57ACF41_ios_min15.5; - productName = _idx_matrix_E57ACF41_ios_min15.5; - productReference = 6BF2BEB1BB36203600000000 /* lib_idx_matrix_E57ACF41_ios_min15.5.a */; + name = _idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min11.0; + productName = _idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min11.0; + productReference = 6BF2BEB12E6EE1D200000000 /* lib_idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; F2FE34CE1838F83E00000000 /* _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min11.0 */ = { isa = PBXNativeTarget; buildConfigurationList = 84EFF5084BCDEF5000000000 /* Build configuration list for PBXNativeTarget "_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000047 /* Sources */, + 4A9C8A580000000000000017 /* Sources */, ); buildRules = ( ); @@ -2851,28 +1295,11 @@ productReference = 6BF2BEB1C76D25EE00000000 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE192D58FA00000000 /* _idx_tensor_7303F5EA_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF508CA95FAFE00000000 /* Build configuration list for PBXNativeTarget "_idx_tensor_7303F5EA_ios_min11.0" */; - buildPhases = ( - 4A9C8A580000000000000053 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A62520DF700000000 /* PBXTargetDependency */, - ); - name = _idx_tensor_7303F5EA_ios_min11.0; - productName = _idx_tensor_7303F5EA_ios_min11.0; - productReference = 6BF2BEB1EDDD3E1000000000 /* lib_idx_tensor_7303F5EA_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; F2FE34CE1AC4218A00000000 /* _idx_max_unpooling_max_pool_argmax_615F909D_ios_min11.0 */ = { isa = PBXNativeTarget; buildConfigurationList = 84EFF508AB7A688600000000 /* Build configuration list for PBXNativeTarget "_idx_max_unpooling_max_pool_argmax_615F909D_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000048 /* Sources */, + 4A9C8A580000000000000019 /* Sources */, ); buildRules = ( ); @@ -2884,46 +1311,27 @@ productReference = 6BF2BEB1D6736AD800000000 /* lib_idx_max_unpooling_max_pool_argmax_615F909D_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE1BB1D91800000000 /* _idx_location_image_frame_opencv_D6F50F87_ios_min15.5 */ = { + F2FE34CE1D7E686A00000000 /* _idx_end_loop_calculator_AADF2B85_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF5086FD1C2A400000000 /* Build configuration list for PBXNativeTarget "_idx_location_image_frame_opencv_D6F50F87_ios_min15.5" */; + buildConfigurationList = 84EFF50858263CF500000000 /* Build configuration list for PBXNativeTarget "_idx_end_loop_calculator_AADF2B85_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000003C /* Sources */, + 4A9C8A580000000000000021 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A79D4949700000000 /* PBXTargetDependency */, - 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, ); - name = _idx_location_image_frame_opencv_D6F50F87_ios_min15.5; - productName = _idx_location_image_frame_opencv_D6F50F87_ios_min15.5; - productReference = 6BF2BEB1F879A06600000000 /* lib_idx_location_image_frame_opencv_D6F50F87_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - F2FE34CE20F64D9800000000 /* _idx_image_opencv_9E4E8A87_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF5084B7E0ABB00000000 /* Build configuration list for PBXNativeTarget "_idx_image_opencv_9E4E8A87_ios_min15.5" */; - buildPhases = ( - 4A9C8A580000000000000051 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, - ); - name = _idx_image_opencv_9E4E8A87_ios_min15.5; - productName = _idx_image_opencv_9E4E8A87_ios_min15.5; - productReference = 6BF2BEB1A8F5B73600000000 /* lib_idx_image_opencv_9E4E8A87_ios_min15.5.a */; + name = _idx_end_loop_calculator_AADF2B85_ios_min15.5; + productName = _idx_end_loop_calculator_AADF2B85_ios_min15.5; + productReference = 6BF2BEB185A9B3FE00000000 /* lib_idx_end_loop_calculator_AADF2B85_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; F2FE34CE216C14B800000000 /* _idx_max_unpooling_max_pool_argmax_615F909D_ios_min15.5 */ = { isa = PBXNativeTarget; buildConfigurationList = 84EFF508F742852500000000 /* Build configuration list for PBXNativeTarget "_idx_max_unpooling_max_pool_argmax_615F909D_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000004C /* Sources */, + 4A9C8A58000000000000001C /* Sources */, ); buildRules = ( ); @@ -2935,64 +1343,16 @@ productReference = 6BF2BEB1616461B400000000 /* lib_idx_max_unpooling_max_pool_argmax_615F909D_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE22E7A19200000000 /* _idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF508734E4FE900000000 /* Build configuration list for PBXNativeTarget "_idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min15.5" */; - buildPhases = ( - 4A9C8A58000000000000001C /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, - 285B8B9ADBC0365300000000 /* PBXTargetDependency */, - 285B8B9A66E95E1300000000 /* PBXTargetDependency */, - 285B8B9A79D4949700000000 /* PBXTargetDependency */, - 285B8B9AAC80CFF100000000 /* PBXTargetDependency */, - 285B8B9AAC80CFF100000000 /* PBXTargetDependency */, - 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, - 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, - 285B8B9A66E95E1300000000 /* PBXTargetDependency */, - ); - name = _idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min15.5; - productName = _idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min15.5; - productReference = 6BF2BEB177AE156000000000 /* lib_idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - F2FE34CE270212EE00000000 /* _idx_MPPMetalUtil_455751A0_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF508B2EE11E100000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalUtil_455751A0_ios_min11.0" */; - buildPhases = ( - 4A9C8A580000000000000024 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A8B4CD5DF00000000 /* PBXTargetDependency */, - ); - name = _idx_MPPMetalUtil_455751A0_ios_min11.0; - productName = _idx_MPPMetalUtil_455751A0_ios_min11.0; - productReference = 6BF2BEB13C41172600000000 /* lib_idx_MPPMetalUtil_455751A0_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; F2FE34CE2C307FC200000000 /* _idx_tflite_model_loader_254BEB33_ios_min15.5 */ = { isa = PBXNativeTarget; buildConfigurationList = 84EFF5084920A84900000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_loader_254BEB33_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000005E /* Sources */, + 4A9C8A580000000000000031 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, 285B8B9A9B64E5B500000000 /* PBXTargetDependency */, ); name = _idx_tflite_model_loader_254BEB33_ios_min15.5; @@ -3004,104 +1364,29 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5081610E78100000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_op_resolver_519CBACD_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000004A /* Sources */, + 4A9C8A58000000000000001A /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, 285B8B9A0F58F30900000000 /* PBXTargetDependency */, - 285B8B9A216C14B900000000 /* PBXTargetDependency */, 285B8B9A0F58F30900000000 /* PBXTargetDependency */, + 285B8B9A216C14B900000000 /* PBXTargetDependency */, + 285B8B9A216C14B900000000 /* PBXTargetDependency */, 285B8B9A0F58F30900000000 /* PBXTargetDependency */, 285B8B9A9CC89BB300000000 /* PBXTargetDependency */, - 285B8B9A216C14B900000000 /* PBXTargetDependency */, ); name = _idx_cpu_op_resolver_519CBACD_ios_min15.5; productName = _idx_cpu_op_resolver_519CBACD_ios_min15.5; productReference = 6BF2BEB135330E2600000000 /* lib_idx_cpu_op_resolver_519CBACD_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE3733EA8C00000000 /* _idx_image_to_tensor_calculator_FF109E68_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF5081CDA19BF00000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_calculator_FF109E68_ios_min15.5" */; - buildPhases = ( - 4A9C8A580000000000000055 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A79D4949700000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, - 285B8B9A486DB1DD00000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9A4A0F047D00000000 /* PBXTargetDependency */, - ); - name = _idx_image_to_tensor_calculator_FF109E68_ios_min15.5; - productName = _idx_image_to_tensor_calculator_FF109E68_ios_min15.5; - productReference = 6BF2BEB1310526FE00000000 /* lib_idx_image_to_tensor_calculator_FF109E68_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - F2FE34CE3CEC689C00000000 /* _idx_gl_calculator_helper_DC51F13C_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF5087AB0E97E00000000 /* Build configuration list for PBXNativeTarget "_idx_gl_calculator_helper_DC51F13C_ios_min15.5" */; - buildPhases = ( - 4A9C8A58000000000000003D /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A79D4949700000000 /* PBXTargetDependency */, - 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, - 285B8B9AED47024D00000000 /* PBXTargetDependency */, - 285B8B9AED47024D00000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9A45BF9C0300000000 /* PBXTargetDependency */, - 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, - 285B8B9AF84C49B100000000 /* PBXTargetDependency */, - 285B8B9AAC80CFF100000000 /* PBXTargetDependency */, - 285B8B9A66E95E1300000000 /* PBXTargetDependency */, - 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, - 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9AEE4F724300000000 /* PBXTargetDependency */, - 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, - ); - name = _idx_gl_calculator_helper_DC51F13C_ios_min15.5; - productName = _idx_gl_calculator_helper_DC51F13C_ios_min15.5; - productReference = 6BF2BEB16C46880800000000 /* lib_idx_gl_calculator_helper_DC51F13C_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - F2FE34CE3DB4BB0000000000 /* _idx_tflite_model_calculator_end_loop_calculator_38D3CDB2_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF508FD0C7ADF00000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_calculator_end_loop_calculator_38D3CDB2_ios_min15.5" */; - buildPhases = ( - 4A9C8A58000000000000006F /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, - 285B8B9A66E95E1300000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - ); - name = _idx_tflite_model_calculator_end_loop_calculator_38D3CDB2_ios_min15.5; - productName = _idx_tflite_model_calculator_end_loop_calculator_38D3CDB2_ios_min15.5; - productReference = 6BF2BEB1C94D4D4E00000000 /* lib_idx_tflite_model_calculator_end_loop_calculator_38D3CDB2_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; F2FE34CE3E081CF800000000 /* _idx_annotation_renderer_8D68840D_ios_min11.0 */ = { isa = PBXNativeTarget; buildConfigurationList = 84EFF5085EB9C91B00000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_renderer_8D68840D_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000038 /* Sources */, + 4A9C8A58000000000000000F /* Sources */, ); buildRules = ( ); @@ -3113,84 +1398,27 @@ productReference = 6BF2BEB160EC260800000000 /* lib_idx_annotation_renderer_8D68840D_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE4098134E00000000 /* _idx_image_frame_graph_tracer_4E004B23_ios_min11.0 */ = { + F2FE34CE3E7A910800000000 /* _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF508626F7F6F00000000 /* Build configuration list for PBXNativeTarget "_idx_image_frame_graph_tracer_4E004B23_ios_min11.0" */; + buildConfigurationList = 84EFF508992D751100000000 /* Build configuration list for PBXNativeTarget "_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000009 /* Sources */, + 4A9C8A580000000000000032 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, - 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, + 285B8B9A762E872100000000 /* PBXTargetDependency */, + 285B8B9AC9EF5A9F00000000 /* PBXTargetDependency */, ); - name = _idx_image_frame_graph_tracer_4E004B23_ios_min11.0; - productName = _idx_image_frame_graph_tracer_4E004B23_ios_min11.0; - productReference = 6BF2BEB1E25C746E00000000 /* lib_idx_image_frame_graph_tracer_4E004B23_ios_min11.0.a */; + name = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min11.0; + productName = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min11.0; + productReference = 6BF2BEB13E6E92F600000000 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE4581F61200000000 /* _idx_MPPMetalHelper_D24F76A1_ios_min15.5 */ = { + F2FE34CE3ED3804A00000000 /* _idx_cpu_util_C9677097_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF508B760D34B00000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalHelper_D24F76A1_ios_min15.5" */; - buildPhases = ( - 4A9C8A580000000000000022 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9ACC596BC100000000 /* PBXTargetDependency */, - ); - name = _idx_MPPMetalHelper_D24F76A1_ios_min15.5; - productName = _idx_MPPMetalHelper_D24F76A1_ios_min15.5; - productReference = 6BF2BEB15BDC4E2C00000000 /* lib_idx_MPPMetalHelper_D24F76A1_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - F2FE34CE45BF9C0200000000 /* _idx_image_properties_calculator_gpu_service_56DC0B61_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF508DBB67FD700000000 /* Build configuration list for PBXNativeTarget "_idx_image_properties_calculator_gpu_service_56DC0B61_ios_min15.5" */; - buildPhases = ( - 4A9C8A580000000000000033 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9A79D4949700000000 /* PBXTargetDependency */, - 285B8B9AED47024D00000000 /* PBXTargetDependency */, - ); - name = _idx_image_properties_calculator_gpu_service_56DC0B61_ios_min15.5; - productName = _idx_image_properties_calculator_gpu_service_56DC0B61_ios_min15.5; - productReference = 6BF2BEB1DFD99BDE00000000 /* lib_idx_image_properties_calculator_gpu_service_56DC0B61_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - F2FE34CE486DB1DC00000000 /* _idx_tensor_7303F5EA_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF50889D7C38200000000 /* Build configuration list for PBXNativeTarget "_idx_tensor_7303F5EA_ios_min15.5" */; - buildPhases = ( - 4A9C8A580000000000000056 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, - ); - name = _idx_tensor_7303F5EA_ios_min15.5; - productName = _idx_tensor_7303F5EA_ios_min15.5; - productReference = 6BF2BEB147F7AD0200000000 /* lib_idx_tensor_7303F5EA_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - F2FE34CE48F8627E00000000 /* _idx_profiler_resource_util_35C39BA3_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF5081DAB3B6400000000 /* Build configuration list for PBXNativeTarget "_idx_profiler_resource_util_35C39BA3_ios_min11.0" */; + buildConfigurationList = 84EFF5088D5B68D300000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_util_C9677097_ios_min15.5" */; buildPhases = ( 4A9C8A58000000000000000D /* Sources */, ); @@ -3198,55 +1426,15 @@ ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9ABEE3CE7500000000 /* PBXTargetDependency */, ); - name = _idx_profiler_resource_util_35C39BA3_ios_min11.0; - productName = _idx_profiler_resource_util_35C39BA3_ios_min11.0; - productReference = 6BF2BEB15757E2E000000000 /* lib_idx_profiler_resource_util_35C39BA3_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - F2FE34CE4A0F047C00000000 /* _idx_image_to_tensor_converter_opencv_22266321_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF50852D61F6100000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_opencv_22266321_ios_min15.5" */; - buildPhases = ( - 4A9C8A580000000000000057 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A20F64D9900000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9A486DB1DD00000000 /* PBXTargetDependency */, - 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, - ); - name = _idx_image_to_tensor_converter_opencv_22266321_ios_min15.5; - productName = _idx_image_to_tensor_converter_opencv_22266321_ios_min15.5; - productReference = 6BF2BEB146128B7C00000000 /* lib_idx_image_to_tensor_converter_opencv_22266321_ios_min15.5.a */; + name = _idx_cpu_util_C9677097_ios_min15.5; + productName = _idx_cpu_util_C9677097_ios_min15.5; + productReference = 6BF2BEB16F17AAC200000000 /* lib_idx_cpu_util_C9677097_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; F2FE34CE4E15716800000000 /* _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min11.0 */ = { isa = PBXNativeTarget; buildConfigurationList = 84EFF5089E75048B00000000 /* Build configuration list for PBXNativeTarget "_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min11.0" */; - buildPhases = ( - 4A9C8A580000000000000026 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9ACDF0E1D100000000 /* PBXTargetDependency */, - 285B8B9ACDF0E1D100000000 /* PBXTargetDependency */, - 285B8B9A8489C38D00000000 /* PBXTargetDependency */, - ); - name = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min11.0; - productName = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min11.0; - productReference = 6BF2BEB1B38F435A00000000 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - F2FE34CE4EC3F25E00000000 /* _idx_MPPGraphGPUData_39C9C70C_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF50866DCA2CC00000000 /* Build configuration list for PBXNativeTarget "_idx_MPPGraphGPUData_39C9C70C_ios_min11.0" */; buildPhases = ( 4A9C8A580000000000000000 /* Sources */, ); @@ -3254,131 +1442,36 @@ ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A62520DF700000000 /* PBXTargetDependency */, - 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, - 285B8B9A62520DF700000000 /* PBXTargetDependency */, + 285B8B9A8489C38D00000000 /* PBXTargetDependency */, + 285B8B9ACDF0E1D100000000 /* PBXTargetDependency */, + 285B8B9ACDF0E1D100000000 /* PBXTargetDependency */, ); - name = _idx_MPPGraphGPUData_39C9C70C_ios_min11.0; - productName = _idx_MPPGraphGPUData_39C9C70C_ios_min11.0; - productReference = 6BF2BEB11CA1FEB600000000 /* lib_idx_MPPGraphGPUData_39C9C70C_ios_min11.0.a */; + name = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min11.0; + productName = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min11.0; + productReference = 6BF2BEB1B38F435A00000000 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE5631D7AC00000000 /* _idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min15.5 */ = { + F2FE34CE564601F800000000 /* _idx_end_loop_calculator_AADF2B85_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF508A58E44BE00000000 /* Build configuration list for PBXNativeTarget "_idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min15.5" */; + buildConfigurationList = 84EFF508F7A3D4A500000000 /* Build configuration list for PBXNativeTarget "_idx_end_loop_calculator_AADF2B85_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000011 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9A66E95E1300000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - ); - name = _idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min15.5; - productName = _idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min15.5; - productReference = 6BF2BEB16F07E71A00000000 /* lib_idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - F2FE34CE5B9442FC00000000 /* _idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF508CF55CF1A00000000 /* Build configuration list for PBXNativeTarget "_idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min15.5" */; - buildPhases = ( - 4A9C8A580000000000000031 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9AAC80CFF100000000 /* PBXTargetDependency */, - 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9AAC80CFF100000000 /* PBXTargetDependency */, - 285B8B9A605975F300000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9A66E95E1300000000 /* PBXTargetDependency */, - 285B8B9AAC80CFF100000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, - 285B8B9A45BF9C0300000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9AAC80CFF100000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9A66E95E1300000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, - ); - name = _idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min15.5; - productName = _idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min15.5; - productReference = 6BF2BEB1CC15ACD800000000 /* lib_idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - F2FE34CE5CD7B2DA00000000 /* _idx_tflite_custom_op_resolver_calculator_772D286F_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF508136ED85B00000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_custom_op_resolver_calculator_772D286F_ios_min15.5" */; - buildPhases = ( - 4A9C8A58000000000000006D /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A94BE0ED500000000 /* PBXTargetDependency */, - 285B8B9A2E1AEAFB00000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - ); - name = _idx_tflite_custom_op_resolver_calculator_772D286F_ios_min15.5; - productName = _idx_tflite_custom_op_resolver_calculator_772D286F_ios_min15.5; - productReference = 6BF2BEB1B47EA6D400000000 /* lib_idx_tflite_custom_op_resolver_calculator_772D286F_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - F2FE34CE5D24269600000000 /* _idx_shader_util_C047EBB4_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF5089DA663AF00000000 /* Build configuration list for PBXNativeTarget "_idx_shader_util_C047EBB4_ios_min11.0" */; - buildPhases = ( - 4A9C8A580000000000000036 /* Sources */, + 4A9C8A580000000000000020 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, ); - name = _idx_shader_util_C047EBB4_ios_min11.0; - productName = _idx_shader_util_C047EBB4_ios_min11.0; - productReference = 6BF2BEB107671C9600000000 /* lib_idx_shader_util_C047EBB4_ios_min11.0.a */; + name = _idx_end_loop_calculator_AADF2B85_ios_min11.0; + productName = _idx_end_loop_calculator_AADF2B85_ios_min11.0; + productReference = 6BF2BEB1D89D727E00000000 /* lib_idx_end_loop_calculator_AADF2B85_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; F2FE34CE5FA9419400000000 /* _idx_clip_vector_size_calculator_C1D859C1_ios_min11.0 */ = { isa = PBXNativeTarget; buildConfigurationList = 84EFF508D1B8279900000000 /* Build configuration list for PBXNativeTarget "_idx_clip_vector_size_calculator_C1D859C1_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000044 /* Sources */, + 4A9C8A580000000000000014 /* Sources */, ); buildRules = ( ); @@ -3390,319 +1483,60 @@ productReference = 6BF2BEB100939AF800000000 /* lib_idx_clip_vector_size_calculator_C1D859C1_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE605975F200000000 /* _idx_scheduler_queue_364511B6_ios_min15.5 */ = { + F2FE34CE61FD1EC600000000 /* _idx_rectangle_util_BC608102_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF508A90E0DE000000000 /* Build configuration list for PBXNativeTarget "_idx_scheduler_queue_364511B6_ios_min15.5" */; + buildConfigurationList = 84EFF508B410383C00000000 /* Build configuration list for PBXNativeTarget "_idx_rectangle_util_BC608102_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000032 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, - 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, - 285B8B9AAC80CFF100000000 /* PBXTargetDependency */, - ); - name = _idx_scheduler_queue_364511B6_ios_min15.5; - productName = _idx_scheduler_queue_364511B6_ios_min15.5; - productReference = 6BF2BEB12E3487DE00000000 /* lib_idx_scheduler_queue_364511B6_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - F2FE34CE60F40B8000000000 /* _idx_gl_simple_shaders_CB7AD146_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF50883769D1F00000000 /* Build configuration list for PBXNativeTarget "_idx_gl_simple_shaders_CB7AD146_ios_min11.0" */; - buildPhases = ( - 4A9C8A580000000000000037 /* Sources */, + 4A9C8A58000000000000002B /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, ); - name = _idx_gl_simple_shaders_CB7AD146_ios_min11.0; - productName = _idx_gl_simple_shaders_CB7AD146_ios_min11.0; - productReference = 6BF2BEB10687813A00000000 /* lib_idx_gl_simple_shaders_CB7AD146_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - F2FE34CE62520DF600000000 /* _idx_image_gl_context_gpu_buffer_multi_pool_99A08626_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF5081D89926500000000 /* Build configuration list for PBXNativeTarget "_idx_image_gl_context_gpu_buffer_multi_pool_99A08626_ios_min11.0" */; - buildPhases = ( - 4A9C8A580000000000000001 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, - 285B8B9A0552442F00000000 /* PBXTargetDependency */, - 285B8B9A4098134F00000000 /* PBXTargetDependency */, - 285B8B9A71A9D19F00000000 /* PBXTargetDependency */, - 285B8B9AAB070CC500000000 /* PBXTargetDependency */, - 285B8B9A80D4856F00000000 /* PBXTargetDependency */, - 285B8B9A043D6EB900000000 /* PBXTargetDependency */, - 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, - ); - name = _idx_image_gl_context_gpu_buffer_multi_pool_99A08626_ios_min11.0; - productName = _idx_image_gl_context_gpu_buffer_multi_pool_99A08626_ios_min11.0; - productReference = 6BF2BEB1D0386F0200000000 /* lib_idx_image_gl_context_gpu_buffer_multi_pool_99A08626_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - F2FE34CE66E95E1200000000 /* _idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF5084D89B18800000000 /* Build configuration list for PBXNativeTarget "_idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min15.5" */; - buildPhases = ( - 4A9C8A580000000000000016 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9AD4B7599D00000000 /* PBXTargetDependency */, - ); - name = _idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min15.5; - productName = _idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min15.5; - productReference = 6BF2BEB14D3C632E00000000 /* lib_idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - F2FE34CE66EAEF7400000000 /* _idx_inference_calculator_metal_9450E505_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF5081B3AF97B00000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_metal_9450E505_ios_min15.5" */; - buildPhases = ( - 4A9C8A580000000000000061 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A4581F61300000000 /* PBXTargetDependency */, - 285B8B9AED47024D00000000 /* PBXTargetDependency */, - 285B8B9ACC596BC100000000 /* PBXTargetDependency */, - 285B8B9A0F49CEED00000000 /* PBXTargetDependency */, - 285B8B9A8B56A57900000000 /* PBXTargetDependency */, - ); - name = _idx_inference_calculator_metal_9450E505_ios_min15.5; - productName = _idx_inference_calculator_metal_9450E505_ios_min15.5; - productReference = 6BF2BEB148CB541600000000 /* lib_idx_inference_calculator_metal_9450E505_ios_min15.5.a */; + name = _idx_rectangle_util_BC608102_ios_min15.5; + productName = _idx_rectangle_util_BC608102_ios_min15.5; + productReference = 6BF2BEB1A374D54C00000000 /* lib_idx_rectangle_util_BC608102_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; F2FE34CE6729A1D000000000 /* _idx_tflite_model_loader_254BEB33_ios_min11.0 */ = { isa = PBXNativeTarget; buildConfigurationList = 84EFF508474F353600000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_loader_254BEB33_ios_min11.0" */; buildPhases = ( - 4A9C8A58000000000000005B /* Sources */, + 4A9C8A580000000000000030 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, 285B8B9A762E872100000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, ); name = _idx_tflite_model_loader_254BEB33_ios_min11.0; productName = _idx_tflite_model_loader_254BEB33_ios_min11.0; productReference = 6BF2BEB17278B65600000000 /* lib_idx_tflite_model_loader_254BEB33_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE6EE3185E00000000 /* _idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF5082CF4B73A00000000 /* Build configuration list for PBXNativeTarget "_idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min15.5" */; - buildPhases = ( - 4A9C8A580000000000000013 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A70815F2D00000000 /* PBXTargetDependency */, - ); - name = _idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min15.5; - productName = _idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min15.5; - productReference = 6BF2BEB1FF5FAD7200000000 /* lib_idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - F2FE34CE70815F2C00000000 /* _idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF508ADC0634800000000 /* Build configuration list for PBXNativeTarget "_idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min15.5" */; - buildPhases = ( - 4A9C8A580000000000000014 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - ); - name = _idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min15.5; - productName = _idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min15.5; - productReference = 6BF2BEB1C0AA537800000000 /* lib_idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - F2FE34CE717FBD3200000000 /* _idx_gl_simple_shaders_CB7AD146_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF5085C39F12800000000 /* Build configuration list for PBXNativeTarget "_idx_gl_simple_shaders_CB7AD146_ios_min15.5" */; - buildPhases = ( - 4A9C8A58000000000000003F /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - ); - name = _idx_gl_simple_shaders_CB7AD146_ios_min15.5; - productName = _idx_gl_simple_shaders_CB7AD146_ios_min15.5; - productReference = 6BF2BEB1A6AE93A200000000 /* lib_idx_gl_simple_shaders_CB7AD146_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - F2FE34CE71A9D19E00000000 /* _idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF508509C6EAD00000000 /* Build configuration list for PBXNativeTarget "_idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min11.0" */; - buildPhases = ( - 4A9C8A58000000000000000B /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9ACC49096B00000000 /* PBXTargetDependency */, - 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, - 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, - 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, - 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9A80D4856F00000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9ACC49096B00000000 /* PBXTargetDependency */, - 285B8B9ACC49096B00000000 /* PBXTargetDependency */, - 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9A80D4856F00000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, - 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, - 285B8B9A091FB26B00000000 /* PBXTargetDependency */, - 285B8B9A80D4856F00000000 /* PBXTargetDependency */, - ); - name = _idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min11.0; - productName = _idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min11.0; - productReference = 6BF2BEB13B97637C00000000 /* lib_idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - F2FE34CE721498C400000000 /* _idx_matrix_E57ACF41_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF50841AF058700000000 /* Build configuration list for PBXNativeTarget "_idx_matrix_E57ACF41_ios_min11.0" */; - buildPhases = ( - 4A9C8A580000000000000041 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - ); - name = _idx_matrix_E57ACF41_ios_min11.0; - productName = _idx_matrix_E57ACF41_ios_min11.0; - productReference = 6BF2BEB16F3388EE00000000 /* lib_idx_matrix_E57ACF41_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; F2FE34CE762E872000000000 /* _idx_resource_util_C5C5DB93_ios_min11.0 */ = { isa = PBXNativeTarget; buildConfigurationList = 84EFF50841B6A51B00000000 /* Build configuration list for PBXNativeTarget "_idx_resource_util_C5C5DB93_ios_min11.0" */; buildPhases = ( - 4A9C8A58000000000000005C /* Sources */, + 4A9C8A58000000000000002C /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9ABEE3CE7500000000 /* PBXTargetDependency */, ); name = _idx_resource_util_C5C5DB93_ios_min11.0; productName = _idx_resource_util_C5C5DB93_ios_min11.0; productReference = 6BF2BEB1E9CE10DC00000000 /* lib_idx_resource_util_C5C5DB93_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE79D4949600000000 /* _idx_image_frame_graph_tracer_4E004B23_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF5085E3AF8BB00000000 /* Build configuration list for PBXNativeTarget "_idx_image_frame_graph_tracer_4E004B23_ios_min15.5" */; - buildPhases = ( - 4A9C8A580000000000000018 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9A66E95E1300000000 /* PBXTargetDependency */, - 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, - ); - name = _idx_image_frame_graph_tracer_4E004B23_ios_min15.5; - productName = _idx_image_frame_graph_tracer_4E004B23_ios_min15.5; - productReference = 6BF2BEB15E75465E00000000 /* lib_idx_image_frame_graph_tracer_4E004B23_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - F2FE34CE7AADD3C400000000 /* _idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF50837CF1CB300000000 /* Build configuration list for PBXNativeTarget "_idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min11.0" */; - buildPhases = ( - 4A9C8A580000000000000003 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A80D4856F00000000 /* PBXTargetDependency */, - 285B8B9ACC49096B00000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9A80D4856F00000000 /* PBXTargetDependency */, - 285B8B9ACC49096B00000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, - 285B8B9ACC49096B00000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9A80D4856F00000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9A80D4856F00000000 /* PBXTargetDependency */, - 285B8B9A80D4856F00000000 /* PBXTargetDependency */, - ); - name = _idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min11.0; - productName = _idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min11.0; - productReference = 6BF2BEB1F126859800000000 /* lib_idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - F2FE34CE7BDEC79000000000 /* _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_717D4ABA_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF5089A5E8EAF00000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_717D4ABA_ios_min15.5" */; - buildPhases = ( - 4A9C8A58000000000000006B /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A486DB1DD00000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - ); - name = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_717D4ABA_ios_min15.5; - productName = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_717D4ABA_ios_min15.5; - productReference = 6BF2BEB13D92A50E00000000 /* lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_717D4ABA_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; F2FE34CE7D22C97800000000 /* _idx_clip_vector_size_calculator_C1D859C1_ios_min15.5 */ = { isa = PBXNativeTarget; buildConfigurationList = 84EFF508278B98D900000000 /* Build configuration list for PBXNativeTarget "_idx_clip_vector_size_calculator_C1D859C1_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000045 /* Sources */, + 4A9C8A580000000000000015 /* Sources */, ); buildRules = ( ); @@ -3718,7 +1552,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5088CB48DB200000000 /* Build configuration list for PBXNativeTarget "_idx_math_68C63536_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000028 /* Sources */, + 4A9C8A580000000000000006 /* Sources */, ); buildRules = ( ); @@ -3734,7 +1568,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508E81BE51800000000 /* Build configuration list for PBXNativeTarget "_idx_math_68C63536_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000002F /* Sources */, + 4A9C8A58000000000000000A /* Sources */, ); buildRules = ( ); @@ -3750,92 +1584,65 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508C3B5CF4100000000 /* Build configuration list for PBXNativeTarget "_idx_olamodule_common_library_63E72567_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000030 /* Sources */, + 4A9C8A58000000000000000B /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9AED47024D00000000 /* PBXTargetDependency */, - 285B8B9A5B9442FD00000000 /* PBXTargetDependency */, - 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, - 285B8B9AEF9E075500000000 /* PBXTargetDependency */, - 285B8B9A66E95E1300000000 /* PBXTargetDependency */, + 285B8B9A87D26E7500000000 /* PBXTargetDependency */, + 285B8B9A3ED3804B00000000 /* PBXTargetDependency */, ); name = _idx_olamodule_common_library_63E72567_ios_min15.5; productName = _idx_olamodule_common_library_63E72567_ios_min15.5; productReference = 6BF2BEB1DE300BF600000000 /* lib_idx_olamodule_common_library_63E72567_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE80D4856E00000000 /* _idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF508AB21E79200000000 /* Build configuration list for PBXNativeTarget "_idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min11.0" */; - buildPhases = ( - 4A9C8A580000000000000004 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9ACC49096B00000000 /* PBXTargetDependency */, - 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, - 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, - 285B8B9ACC49096B00000000 /* PBXTargetDependency */, - 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - ); - name = _idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min11.0; - productName = _idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min11.0; - productReference = 6BF2BEB1DBA1F4D600000000 /* lib_idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; F2FE34CE8489C38C00000000 /* _idx_olamodule_common_library_63E72567_ios_min11.0 */ = { isa = PBXNativeTarget; buildConfigurationList = 84EFF508778FF48400000000 /* Build configuration list for PBXNativeTarget "_idx_olamodule_common_library_63E72567_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000029 /* Sources */, + 4A9C8A580000000000000001 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A043D6EB900000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, - 285B8B9A0552442F00000000 /* PBXTargetDependency */, - 285B8B9AA616095700000000 /* PBXTargetDependency */, - 285B8B9A62520DF700000000 /* PBXTargetDependency */, + 285B8B9AE3255C4300000000 /* PBXTargetDependency */, + 285B8B9AB4F98C9F00000000 /* PBXTargetDependency */, ); name = _idx_olamodule_common_library_63E72567_ios_min11.0; productName = _idx_olamodule_common_library_63E72567_ios_min11.0; productReference = 6BF2BEB152022CF000000000 /* lib_idx_olamodule_common_library_63E72567_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE87E6141C00000000 /* _idx_annotation_overlay_calculator_D98E9275_ios_min11.0 */ = { + F2FE34CE87D26E7400000000 /* _idx_util_C76AD427_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF5080E206A9F00000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_overlay_calculator_D98E9275_ios_min11.0" */; + buildConfigurationList = 84EFF5081ECDCC5600000000 /* Build configuration list for PBXNativeTarget "_idx_util_C76AD427_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000034 /* Sources */, + 4A9C8A58000000000000000C /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + ); + name = _idx_util_C76AD427_ios_min15.5; + productName = _idx_util_C76AD427_ios_min15.5; + productReference = 6BF2BEB110B1FD6E00000000 /* lib_idx_util_C76AD427_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + F2FE34CE87E6141C00000000 /* _idx_annotation_overlay_calculator_D98E9275_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = 84EFF5080E206A9F00000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_overlay_calculator_D98E9275_ios_min11.0" */; + buildPhases = ( + 4A9C8A58000000000000000E /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9AF43963A700000000 /* PBXTargetDependency */, - 285B8B9A043D6EB900000000 /* PBXTargetDependency */, - 285B8B9A60F40B8100000000 /* PBXTargetDependency */, - 285B8B9A4098134F00000000 /* PBXTargetDependency */, 285B8B9A3E081CF900000000 /* PBXTargetDependency */, - 285B8B9A5D24269700000000 /* PBXTargetDependency */, - 285B8B9AC7F9A94500000000 /* PBXTargetDependency */, ); name = _idx_annotation_overlay_calculator_D98E9275_ios_min11.0; productName = _idx_annotation_overlay_calculator_D98E9275_ios_min11.0; @@ -3846,81 +1653,31 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508161F1A1D00000000 /* Build configuration list for PBXNativeTarget "_idx_mediapipe_framework_ios_C158E828_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000021 /* Sources */, + 4A9C8A580000000000000022 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A62520DF700000000 /* PBXTargetDependency */, - 285B8B9A043D6EB900000000 /* PBXTargetDependency */, - 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, - 285B8B9A0552442F00000000 /* PBXTargetDependency */, - 285B8B9A4EC3F25F00000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9AB4F98C9F00000000 /* PBXTargetDependency */, + 285B8B9AE3255C4300000000 /* PBXTargetDependency */, ); name = _idx_mediapipe_framework_ios_C158E828_ios_min11.0; productName = _idx_mediapipe_framework_ios_C158E828_ios_min11.0; productReference = 6BF2BEB105A13E0A00000000 /* lib_idx_mediapipe_framework_ios_C158E828_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE8B56A57800000000 /* _idx_inference_calculator_interface_inference_calculator_cpu_EC7FC897_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF5086042AB7700000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_interface_inference_calculator_cpu_EC7FC897_ios_min15.5" */; - buildPhases = ( - 4A9C8A58000000000000005D /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9AAC80CFF100000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9A2C307FC300000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9A486DB1DD00000000 /* PBXTargetDependency */, - 285B8B9A66E95E1300000000 /* PBXTargetDependency */, - ); - name = _idx_inference_calculator_interface_inference_calculator_cpu_EC7FC897_ios_min15.5; - productName = _idx_inference_calculator_interface_inference_calculator_cpu_EC7FC897_ios_min15.5; - productReference = 6BF2BEB19E6C836600000000 /* lib_idx_inference_calculator_interface_inference_calculator_cpu_EC7FC897_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - F2FE34CE8D69C4A200000000 /* _idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF508D5E19DD800000000 /* Build configuration list for PBXNativeTarget "_idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min11.0" */; - buildPhases = ( - 4A9C8A580000000000000007 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9ABEE3CE7500000000 /* PBXTargetDependency */, - ); - name = _idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min11.0; - productName = _idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min11.0; - productReference = 6BF2BEB19B1FC05C00000000 /* lib_idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; F2FE34CE900EF31A00000000 /* _idx_annotation_overlay_calculator_D98E9275_ios_min15.5 */ = { isa = PBXNativeTarget; buildConfigurationList = 84EFF508363B547A00000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_overlay_calculator_D98E9275_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000003A /* Sources */, + 4A9C8A580000000000000010 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, 285B8B9AC180231D00000000 /* PBXTargetDependency */, - 285B8B9A1BB1D91900000000 /* PBXTargetDependency */, - 285B8B9A3CEC689D00000000 /* PBXTargetDependency */, - 285B8B9A717FBD3300000000 /* PBXTargetDependency */, - 285B8B9AED47024D00000000 /* PBXTargetDependency */, - 285B8B9A79D4949700000000 /* PBXTargetDependency */, - 285B8B9AF84C49B100000000 /* PBXTargetDependency */, ); name = _idx_annotation_overlay_calculator_D98E9275_ios_min15.5; productName = _idx_annotation_overlay_calculator_D98E9275_ios_min15.5; @@ -3931,17 +1688,12 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508E48C078C00000000 /* Build configuration list for PBXNativeTarget "_idx_begin_loop_calculator_50B5F6A2_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000042 /* Sources */, + 4A9C8A580000000000000013 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9A66E95E1300000000 /* PBXTargetDependency */, - 285B8B9A148AEA4700000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, ); name = _idx_begin_loop_calculator_50B5F6A2_ios_min15.5; productName = _idx_begin_loop_calculator_50B5F6A2_ios_min15.5; @@ -3952,7 +1704,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508192F9DD000000000 /* Build configuration list for PBXNativeTarget "_idx_op_resolver_0836C983_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000065 /* Sources */, + 4A9C8A580000000000000027 /* Sources */, ); buildRules = ( ); @@ -3964,77 +1716,36 @@ productReference = 6BF2BEB10343A59400000000 /* lib_idx_op_resolver_0836C983_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE958D8C7600000000 /* _idx_image_to_tensor_converter_metal_4060E9DC_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF508FA3A52CA00000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_metal_4060E9DC_ios_min11.0" */; - buildPhases = ( - 4A9C8A580000000000000058 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A62520DF700000000 /* PBXTargetDependency */, - 285B8B9A80D4856F00000000 /* PBXTargetDependency */, - 285B8B9A192D58FB00000000 /* PBXTargetDependency */, - 285B8B9AAB070CC500000000 /* PBXTargetDependency */, - 285B8B9AF437D55300000000 /* PBXTargetDependency */, - ); - name = _idx_image_to_tensor_converter_metal_4060E9DC_ios_min11.0; - productName = _idx_image_to_tensor_converter_metal_4060E9DC_ios_min11.0; - productReference = 6BF2BEB1062DDCBE00000000 /* lib_idx_image_to_tensor_converter_metal_4060E9DC_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; F2FE34CE97A002A600000000 /* _idx_core_BeautyFilters_core-ios_3FD503C6_ios_min15.5 */ = { isa = PBXNativeTarget; buildConfigurationList = 84EFF50883A4D2C400000000 /* Build configuration list for PBXNativeTarget "_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000002E /* Sources */, + 4A9C8A580000000000000008 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 285B8B9AAEE1CD9700000000 /* PBXTargetDependency */, 285B8B9A7E908C2900000000 /* PBXTargetDependency */, - 285B8B9A70815F2D00000000 /* PBXTargetDependency */, - 285B8B9A70815F2D00000000 /* PBXTargetDependency */, - 285B8B9A70815F2D00000000 /* PBXTargetDependency */, + 285B8B9AAEE1CD9700000000 /* PBXTargetDependency */, + 285B8B9AAEE1CD9700000000 /* PBXTargetDependency */, ); name = "_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min15.5"; productName = "_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min15.5"; productReference = 6BF2BEB1C9C325FA00000000 /* lib_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE9988932800000000 /* _idx_tflite_custom_op_resolver_calculator_772D286F_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF5084D92825300000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_custom_op_resolver_calculator_772D286F_ios_min11.0" */; - buildPhases = ( - 4A9C8A58000000000000006C /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9A019362DD00000000 /* PBXTargetDependency */, - 285B8B9AE4F68A4900000000 /* PBXTargetDependency */, - ); - name = _idx_tflite_custom_op_resolver_calculator_772D286F_ios_min11.0; - productName = _idx_tflite_custom_op_resolver_calculator_772D286F_ios_min11.0; - productReference = 6BF2BEB1B9E631C400000000 /* lib_idx_tflite_custom_op_resolver_calculator_772D286F_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; F2FE34CE9B64E5B400000000 /* _idx_resource_util_C5C5DB93_ios_min15.5 */ = { isa = PBXNativeTarget; buildConfigurationList = 84EFF50879B1A83300000000 /* Build configuration list for PBXNativeTarget "_idx_resource_util_C5C5DB93_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000005F /* Sources */, + 4A9C8A58000000000000002D /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9AD4B7599D00000000 /* PBXTargetDependency */, ); name = _idx_resource_util_C5C5DB93_ios_min15.5; productName = _idx_resource_util_C5C5DB93_ios_min15.5; @@ -4045,7 +1756,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508DB4002F000000000 /* Build configuration list for PBXNativeTarget "_idx_transpose_conv_bias_E3459F40_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000004D /* Sources */, + 4A9C8A58000000000000001D /* Sources */, ); buildRules = ( ); @@ -4057,27 +1768,11 @@ productReference = 6BF2BEB17C69A2E400000000 /* lib_idx_transpose_conv_bias_E3459F40_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE9CD320B600000000 /* _idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF50883C6DEA900000000 /* Build configuration list for PBXNativeTarget "_idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min11.0" */; - buildPhases = ( - 4A9C8A580000000000000006 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - ); - name = _idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min11.0; - productName = _idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min11.0; - productReference = 6BF2BEB196E75F6C00000000 /* lib_idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; F2FE34CE9CDDB50C00000000 /* _idx_transpose_conv_bias_E3459F40_ios_min11.0 */ = { isa = PBXNativeTarget; buildConfigurationList = 84EFF50845659DC900000000 /* Build configuration list for PBXNativeTarget "_idx_transpose_conv_bias_E3459F40_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000049 /* Sources */, + 4A9C8A580000000000000018 /* Sources */, ); buildRules = ( ); @@ -4089,140 +1784,32 @@ productReference = 6BF2BEB1CAFF3BDC00000000 /* lib_idx_transpose_conv_bias_E3459F40_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CEA13C97FE00000000 /* _idx_tflite_model_calculator_end_loop_calculator_38D3CDB2_ios_min11.0 */ = { + F2FE34CEAEE1CD9600000000 /* _idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF508DBA80DDD00000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_calculator_end_loop_calculator_38D3CDB2_ios_min11.0" */; + buildConfigurationList = 84EFF5083E77579C00000000 /* Build configuration list for PBXNativeTarget "_idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000006E /* Sources */, + 4A9C8A580000000000000009 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, - 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, ); - name = _idx_tflite_model_calculator_end_loop_calculator_38D3CDB2_ios_min11.0; - productName = _idx_tflite_model_calculator_end_loop_calculator_38D3CDB2_ios_min11.0; - productReference = 6BF2BEB1775B508800000000 /* lib_idx_tflite_model_calculator_end_loop_calculator_38D3CDB2_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - F2FE34CEA616095600000000 /* _idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF5080F04FD2900000000 /* Build configuration list for PBXNativeTarget "_idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min11.0" */; - buildPhases = ( - 4A9C8A58000000000000002A /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A71A9D19F00000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9A80D4856F00000000 /* PBXTargetDependency */, - 285B8B9A80D4856F00000000 /* PBXTargetDependency */, - 285B8B9A71A9D19F00000000 /* PBXTargetDependency */, - 285B8B9A80D4856F00000000 /* PBXTargetDependency */, - 285B8B9A71A9D19F00000000 /* PBXTargetDependency */, - 285B8B9A80D4856F00000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, - 285B8B9A80D4856F00000000 /* PBXTargetDependency */, - 285B8B9A80D4856F00000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9A12002F2D00000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9AECB1197500000000 /* PBXTargetDependency */, - 285B8B9A80D4856F00000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9A71A9D19F00000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, - 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, - 285B8B9ACC49096B00000000 /* PBXTargetDependency */, - 285B8B9A80D4856F00000000 /* PBXTargetDependency */, - 285B8B9ACC49096B00000000 /* PBXTargetDependency */, - ); - name = _idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min11.0; - productName = _idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min11.0; - productReference = 6BF2BEB140A1AF9000000000 /* lib_idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - F2FE34CEAB070CC400000000 /* _idx_gpu_buffer_storage_gpu_buffer_format_06E221FF_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF5081FB54A7400000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_gpu_buffer_format_06E221FF_ios_min11.0" */; - buildPhases = ( - 4A9C8A58000000000000000E /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A4098134F00000000 /* PBXTargetDependency */, - ); - name = _idx_gpu_buffer_storage_gpu_buffer_format_06E221FF_ios_min11.0; - productName = _idx_gpu_buffer_storage_gpu_buffer_format_06E221FF_ios_min11.0; - productReference = 6BF2BEB10F66ADE200000000 /* lib_idx_gpu_buffer_storage_gpu_buffer_format_06E221FF_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - F2FE34CEAC80CFF000000000 /* _idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF508A9596AF100000000 /* Build configuration list for PBXNativeTarget "_idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min15.5" */; - buildPhases = ( - 4A9C8A58000000000000001B /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, - 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9A66E95E1300000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9A66E95E1300000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, - 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9A22E7A19300000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, - 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, - 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - ); - name = _idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min15.5; - productName = _idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min15.5; - productReference = 6BF2BEB11338C3A000000000 /* lib_idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min15.5.a */; + name = _idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min15.5; + productName = _idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min15.5; + productReference = 6BF2BEB1E3F4AD9A00000000 /* lib_idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; F2FE34CEB297DEA800000000 /* _idx_begin_loop_calculator_50B5F6A2_ios_min11.0 */ = { isa = PBXNativeTarget; buildConfigurationList = 84EFF5083836504100000000 /* Build configuration list for PBXNativeTarget "_idx_begin_loop_calculator_50B5F6A2_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000040 /* Sources */, + 4A9C8A580000000000000012 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, - 285B8B9A721498C500000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, ); name = _idx_begin_loop_calculator_50B5F6A2_ios_min11.0; productName = _idx_begin_loop_calculator_50B5F6A2_ios_min11.0; @@ -4233,120 +1820,71 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF50840029B2B00000000 /* Build configuration list for PBXNativeTarget "_idx_non_max_suppression_calculator_E13679C5_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000062 /* Sources */, + 4A9C8A580000000000000024 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9AC7F9A94500000000 /* PBXTargetDependency */, - 285B8B9A4098134F00000000 /* PBXTargetDependency */, ); name = _idx_non_max_suppression_calculator_E13679C5_ios_min11.0; productName = _idx_non_max_suppression_calculator_E13679C5_ios_min11.0; productReference = 6BF2BEB1C40DE00800000000 /* lib_idx_non_max_suppression_calculator_E13679C5_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CEB4C5EF0600000000 /* _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_717D4ABA_ios_min11.0 */ = { + F2FE34CEB4F98C9E00000000 /* _idx_util_C76AD427_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF5085CC6057F00000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_717D4ABA_ios_min11.0" */; + buildConfigurationList = 84EFF508EA09B22F00000000 /* Build configuration list for PBXNativeTarget "_idx_util_C76AD427_ios_min11.0" */; buildPhases = ( - 4A9C8A58000000000000006A /* Sources */, + 4A9C8A580000000000000003 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A192D58FB00000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, ); - name = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_717D4ABA_ios_min11.0; - productName = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_717D4ABA_ios_min11.0; - productReference = 6BF2BEB1ECAC14B600000000 /* lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_717D4ABA_ios_min11.0.a */; + name = _idx_util_C76AD427_ios_min11.0; + productName = _idx_util_C76AD427_ios_min11.0; + productReference = 6BF2BEB17384850E00000000 /* lib_idx_util_C76AD427_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; F2FE34CEB888FE7400000000 /* _idx_non_max_suppression_calculator_E13679C5_ios_min15.5 */ = { isa = PBXNativeTarget; buildConfigurationList = 84EFF5086D9F13EB00000000 /* Build configuration list for PBXNativeTarget "_idx_non_max_suppression_calculator_E13679C5_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000063 /* Sources */, + 4A9C8A580000000000000025 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A79D4949700000000 /* PBXTargetDependency */, - 285B8B9A1BB1D91900000000 /* PBXTargetDependency */, ); name = _idx_non_max_suppression_calculator_E13679C5_ios_min15.5; productName = _idx_non_max_suppression_calculator_E13679C5_ios_min15.5; productReference = 6BF2BEB179FA7B5A00000000 /* lib_idx_non_max_suppression_calculator_E13679C5_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CEBCF3D3C600000000 /* _idx_image_to_tensor_calculator_FF109E68_ios_min11.0 */ = { + F2FE34CEBC6B4FBA00000000 /* _idx_rectangle_util_BC608102_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF508E0BB30A300000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_calculator_FF109E68_ios_min11.0" */; + buildConfigurationList = 84EFF508B2B858A400000000 /* Build configuration list for PBXNativeTarget "_idx_rectangle_util_BC608102_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000052 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A62520DF700000000 /* PBXTargetDependency */, - 285B8B9A80D4856F00000000 /* PBXTargetDependency */, - 285B8B9A4098134F00000000 /* PBXTargetDependency */, - 285B8B9A192D58FB00000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9AE60E967B00000000 /* PBXTargetDependency */, - ); - name = _idx_image_to_tensor_calculator_FF109E68_ios_min11.0; - productName = _idx_image_to_tensor_calculator_FF109E68_ios_min11.0; - productReference = 6BF2BEB1329B39B200000000 /* lib_idx_image_to_tensor_calculator_FF109E68_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - F2FE34CEBEE3CE7400000000 /* _idx_file_path_E61EA0A1_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF508DB9B2BF000000000 /* Build configuration list for PBXNativeTarget "_idx_file_path_E61EA0A1_ios_min11.0" */; - buildPhases = ( - 4A9C8A580000000000000008 /* Sources */, + 4A9C8A58000000000000002A /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, ); - name = _idx_file_path_E61EA0A1_ios_min11.0; - productName = _idx_file_path_E61EA0A1_ios_min11.0; - productReference = 6BF2BEB161D5A49A00000000 /* lib_idx_file_path_E61EA0A1_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - F2FE34CEC17A4F8000000000 /* _idx_inference_calculator_metal_9450E505_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF50867F6D39600000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_metal_9450E505_ios_min11.0" */; - buildPhases = ( - 4A9C8A580000000000000060 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A043D6EB900000000 /* PBXTargetDependency */, - 285B8B9A270212EF00000000 /* PBXTargetDependency */, - 285B8B9ADBAB600300000000 /* PBXTargetDependency */, - 285B8B9A8B4CD5DF00000000 /* PBXTargetDependency */, - 285B8B9AF437D55300000000 /* PBXTargetDependency */, - ); - name = _idx_inference_calculator_metal_9450E505_ios_min11.0; - productName = _idx_inference_calculator_metal_9450E505_ios_min11.0; - productReference = 6BF2BEB1481B3A4200000000 /* lib_idx_inference_calculator_metal_9450E505_ios_min11.0.a */; + name = _idx_rectangle_util_BC608102_ios_min11.0; + productName = _idx_rectangle_util_BC608102_ios_min11.0; + productReference = 6BF2BEB10F69F5F200000000 /* lib_idx_rectangle_util_BC608102_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; F2FE34CEC180231C00000000 /* _idx_annotation_renderer_8D68840D_ios_min15.5 */ = { isa = PBXNativeTarget; buildConfigurationList = 84EFF508D7525C8000000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_renderer_8D68840D_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000003B /* Sources */, + 4A9C8A580000000000000011 /* Sources */, ); buildRules = ( ); @@ -4358,80 +1896,20 @@ productReference = 6BF2BEB1CE57CAE800000000 /* lib_idx_annotation_renderer_8D68840D_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CEC49D7CB200000000 /* _idx_image_to_tensor_converter_metal_4060E9DC_ios_min15.5 */ = { + F2FE34CEC9EF5A9E00000000 /* _idx_previous_loopback_calculator_header_util_D60754F6_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF5084BDA704A00000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_metal_4060E9DC_ios_min15.5" */; + buildConfigurationList = 84EFF5084E3B400600000000 /* Build configuration list for PBXNativeTarget "_idx_previous_loopback_calculator_header_util_D60754F6_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000059 /* Sources */, + 4A9C8A580000000000000028 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A486DB1DD00000000 /* PBXTargetDependency */, - 285B8B9A4581F61300000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, - 285B8B9AEE4F724300000000 /* PBXTargetDependency */, ); - name = _idx_image_to_tensor_converter_metal_4060E9DC_ios_min15.5; - productName = _idx_image_to_tensor_converter_metal_4060E9DC_ios_min15.5; - productReference = 6BF2BEB14E78690800000000 /* lib_idx_image_to_tensor_converter_metal_4060E9DC_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - F2FE34CEC7F9A94400000000 /* _idx_location_image_frame_opencv_D6F50F87_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF508EE0A722C00000000 /* Build configuration list for PBXNativeTarget "_idx_location_image_frame_opencv_D6F50F87_ios_min11.0" */; - buildPhases = ( - 4A9C8A580000000000000039 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9ACC49096B00000000 /* PBXTargetDependency */, - 285B8B9A4098134F00000000 /* PBXTargetDependency */, - ); - name = _idx_location_image_frame_opencv_D6F50F87_ios_min11.0; - productName = _idx_location_image_frame_opencv_D6F50F87_ios_min11.0; - productReference = 6BF2BEB12D97516200000000 /* lib_idx_location_image_frame_opencv_D6F50F87_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - F2FE34CECC45E21A00000000 /* _idx_tensors_to_detections_calculator_39B944A4_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF508D94DA60100000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_detections_calculator_39B944A4_ios_min15.5" */; - buildPhases = ( - 4A9C8A580000000000000069 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9AD4B7599D00000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9A486DB1DD00000000 /* PBXTargetDependency */, - 285B8B9A1BB1D91900000000 /* PBXTargetDependency */, - ); - name = _idx_tensors_to_detections_calculator_39B944A4_ios_min15.5; - productName = _idx_tensors_to_detections_calculator_39B944A4_ios_min15.5; - productReference = 6BF2BEB11925DF0400000000 /* lib_idx_tensors_to_detections_calculator_39B944A4_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - F2FE34CECC49096A00000000 /* _idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF508A3588D7D00000000 /* Build configuration list for PBXNativeTarget "_idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min11.0" */; - buildPhases = ( - 4A9C8A580000000000000005 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A9CD320B700000000 /* PBXTargetDependency */, - ); - name = _idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min11.0; - productName = _idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min11.0; - productReference = 6BF2BEB121F5530600000000 /* lib_idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min11.0.a */; + name = _idx_previous_loopback_calculator_header_util_D60754F6_ios_min11.0; + productName = _idx_previous_loopback_calculator_header_util_D60754F6_ios_min11.0; + productReference = 6BF2BEB1E88ABD0C00000000 /* lib_idx_previous_loopback_calculator_header_util_D60754F6_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; F2FE34CECC596BC000000000 /* _idx_mediapipe_framework_ios_C158E828_ios_min15.5 */ = { @@ -4444,12 +1922,8 @@ ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9AED47024D00000000 /* PBXTargetDependency */, - 285B8B9AEF9E075500000000 /* PBXTargetDependency */, - 285B8B9A0BF0E74100000000 /* PBXTargetDependency */, - 285B8B9A66E95E1300000000 /* PBXTargetDependency */, - 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, + 285B8B9A87D26E7500000000 /* PBXTargetDependency */, + 285B8B9A3ED3804B00000000 /* PBXTargetDependency */, ); name = _idx_mediapipe_framework_ios_C158E828_ios_min15.5; productName = _idx_mediapipe_framework_ios_C158E828_ios_min15.5; @@ -4460,16 +1934,16 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508F0D7FBAC00000000 /* Build configuration list for PBXNativeTarget "_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000027 /* Sources */, + 4A9C8A580000000000000004 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A9CD320B700000000 /* PBXTargetDependency */, + 285B8B9A10832CE100000000 /* PBXTargetDependency */, + 285B8B9A10832CE100000000 /* PBXTargetDependency */, + 285B8B9A10832CE100000000 /* PBXTargetDependency */, 285B8B9A7E674A3900000000 /* PBXTargetDependency */, - 285B8B9A9CD320B700000000 /* PBXTargetDependency */, - 285B8B9A9CD320B700000000 /* PBXTargetDependency */, ); name = "_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min11.0"; productName = "_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min11.0"; @@ -4492,140 +1966,16 @@ productReference = 6BF2BEB1DC26EEDA00000000 /* libmediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CED4B7599C00000000 /* _idx_file_path_E61EA0A1_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF5088CF1146C00000000 /* Build configuration list for PBXNativeTarget "_idx_file_path_E61EA0A1_ios_min15.5" */; - buildPhases = ( - 4A9C8A580000000000000017 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - ); - name = _idx_file_path_E61EA0A1_ios_min15.5; - productName = _idx_file_path_E61EA0A1_ios_min15.5; - productReference = 6BF2BEB1B0FBE87A00000000 /* lib_idx_file_path_E61EA0A1_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - F2FE34CED7BFBE2C00000000 /* _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_87112A87_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF50882F3329000000000 /* Build configuration list for PBXNativeTarget "_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_87112A87_ios_min15.5" */; - buildPhases = ( - 4A9C8A580000000000000071 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9AAC80CFF100000000 /* PBXTargetDependency */, - 285B8B9A3CEC689D00000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9A5B9442FD00000000 /* PBXTargetDependency */, - 285B8B9A66E95E1300000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9A79D4949700000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9A66E95E1300000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, - 285B8B9A5B9442FD00000000 /* PBXTargetDependency */, - 285B8B9A9B64E5B500000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - ); - name = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_87112A87_ios_min15.5; - productName = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_87112A87_ios_min15.5; - productReference = 6BF2BEB121CFE74A00000000 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_87112A87_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - F2FE34CEDBAB600200000000 /* _idx_inference_calculator_interface_inference_calculator_cpu_EC7FC897_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF508B71D3E1900000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_interface_inference_calculator_cpu_EC7FC897_ios_min11.0" */; - buildPhases = ( - 4A9C8A58000000000000005A /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A192D58FB00000000 /* PBXTargetDependency */, - 285B8B9A71A9D19F00000000 /* PBXTargetDependency */, - 285B8B9A6729A1D100000000 /* PBXTargetDependency */, - 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9A80D4856F00000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - ); - name = _idx_inference_calculator_interface_inference_calculator_cpu_EC7FC897_ios_min11.0; - productName = _idx_inference_calculator_interface_inference_calculator_cpu_EC7FC897_ios_min11.0; - productReference = 6BF2BEB138ACA16200000000 /* lib_idx_inference_calculator_interface_inference_calculator_cpu_EC7FC897_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - F2FE34CEDBC0365200000000 /* _idx_profiler_resource_util_35C39BA3_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF5080D167B7100000000 /* Build configuration list for PBXNativeTarget "_idx_profiler_resource_util_35C39BA3_ios_min15.5" */; - buildPhases = ( - 4A9C8A58000000000000001D /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9AD4B7599D00000000 /* PBXTargetDependency */, - ); - name = _idx_profiler_resource_util_35C39BA3_ios_min15.5; - productName = _idx_profiler_resource_util_35C39BA3_ios_min15.5; - productReference = 6BF2BEB12CFA860400000000 /* lib_idx_profiler_resource_util_35C39BA3_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - F2FE34CEDBE24C2C00000000 /* _idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF50804A631DD00000000 /* Build configuration list for PBXNativeTarget "_idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min15.5" */; - buildPhases = ( - 4A9C8A580000000000000012 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, - 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, - 285B8B9A66E95E1300000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9A66E95E1300000000 /* PBXTargetDependency */, - 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, - 285B8B9A66E95E1300000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - ); - name = _idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min15.5; - productName = _idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min15.5; - productReference = 6BF2BEB1CC2F532800000000 /* lib_idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; F2FE34CEDDBFB5A200000000 /* _idx_split_vector_calculator_ED1EBC41_ios_min11.0 */ = { isa = PBXNativeTarget; buildConfigurationList = 84EFF508BBC89BEB00000000 /* Build configuration list for PBXNativeTarget "_idx_split_vector_calculator_ED1EBC41_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000066 /* Sources */, + 4A9C8A58000000000000002E /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A721498C500000000 /* PBXTargetDependency */, - 285B8B9A192D58FB00000000 /* PBXTargetDependency */, 285B8B9A762E872100000000 /* PBXTargetDependency */, ); name = _idx_split_vector_calculator_ED1EBC41_ios_min11.0; @@ -4633,9 +1983,9 @@ productReference = 6BF2BEB115B04C8C00000000 /* lib_idx_split_vector_calculator_ED1EBC41_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CEDDC0B1B200000000 /* _idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min11.0 */ = { + F2FE34CEE3255C4200000000 /* _idx_cpu_util_C9677097_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF5080908381B00000000 /* Build configuration list for PBXNativeTarget "_idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min11.0" */; + buildConfigurationList = 84EFF5087A1991E800000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_util_C9677097_ios_min11.0" */; buildPhases = ( 4A9C8A580000000000000002 /* Sources */, ); @@ -4643,87 +1993,57 @@ ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, - 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, - 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, - 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, - 285B8B9A80D4856F00000000 /* PBXTargetDependency */, - 285B8B9ACC49096B00000000 /* PBXTargetDependency */, - 285B8B9A4098134F00000000 /* PBXTargetDependency */, - 285B8B9A80D4856F00000000 /* PBXTargetDependency */, - 285B8B9ACC49096B00000000 /* PBXTargetDependency */, - 285B8B9A80D4856F00000000 /* PBXTargetDependency */, - 285B8B9A80D4856F00000000 /* PBXTargetDependency */, ); - name = _idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min11.0; - productName = _idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min11.0; - productReference = 6BF2BEB1F4EF873200000000 /* lib_idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min11.0.a */; + name = _idx_cpu_util_C9677097_ios_min11.0; + productName = _idx_cpu_util_C9677097_ios_min11.0; + productReference = 6BF2BEB1311D3FFA00000000 /* lib_idx_cpu_util_C9677097_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CEDF5731D000000000 /* _idx_image_opencv_9E4E8A87_ios_min11.0 */ = { + F2FE34CEE493101600000000 /* _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF50871BCBA0600000000 /* Build configuration list for PBXNativeTarget "_idx_image_opencv_9E4E8A87_ios_min11.0" */; + buildConfigurationList = 84EFF508F78E615300000000 /* Build configuration list for PBXNativeTarget "_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000050 /* Sources */, + 4A9C8A580000000000000033 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A62520DF700000000 /* PBXTargetDependency */, + 285B8B9A07268A4900000000 /* PBXTargetDependency */, + 285B8B9A9B64E5B500000000 /* PBXTargetDependency */, ); - name = _idx_image_opencv_9E4E8A87_ios_min11.0; - productName = _idx_image_opencv_9E4E8A87_ios_min11.0; - productReference = 6BF2BEB1112804BA00000000 /* lib_idx_image_opencv_9E4E8A87_ios_min11.0.a */; + name = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min15.5; + productName = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min15.5; + productReference = 6BF2BEB1F180FE8800000000 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; F2FE34CEE4F68A4800000000 /* _idx_cpu_op_resolver_519CBACD_ios_min11.0 */ = { isa = PBXNativeTarget; buildConfigurationList = 84EFF5082219CAC000000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_op_resolver_519CBACD_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000046 /* Sources */, + 4A9C8A580000000000000016 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, 285B8B9A1838F83F00000000 /* PBXTargetDependency */, - 285B8B9A1AC4218B00000000 /* PBXTargetDependency */, - 285B8B9A1AC4218B00000000 /* PBXTargetDependency */, - 285B8B9A1838F83F00000000 /* PBXTargetDependency */, 285B8B9A9CDDB50D00000000 /* PBXTargetDependency */, + 285B8B9A1AC4218B00000000 /* PBXTargetDependency */, 285B8B9A1838F83F00000000 /* PBXTargetDependency */, + 285B8B9A1838F83F00000000 /* PBXTargetDependency */, + 285B8B9A1AC4218B00000000 /* PBXTargetDependency */, ); name = _idx_cpu_op_resolver_519CBACD_ios_min11.0; productName = _idx_cpu_op_resolver_519CBACD_ios_min11.0; productReference = 6BF2BEB1E22D8E4E00000000 /* lib_idx_cpu_op_resolver_519CBACD_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CEE60E967A00000000 /* _idx_image_to_tensor_converter_opencv_22266321_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF508DC4A836900000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_opencv_22266321_ios_min11.0" */; - buildPhases = ( - 4A9C8A580000000000000054 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9ADF5731D100000000 /* PBXTargetDependency */, - 285B8B9A80D4856F00000000 /* PBXTargetDependency */, - 285B8B9A192D58FB00000000 /* PBXTargetDependency */, - 285B8B9A62520DF700000000 /* PBXTargetDependency */, - ); - name = _idx_image_to_tensor_converter_opencv_22266321_ios_min11.0; - productName = _idx_image_to_tensor_converter_opencv_22266321_ios_min11.0; - productReference = 6BF2BEB175EE83F000000000 /* lib_idx_image_to_tensor_converter_opencv_22266321_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; F2FE34CEECAE0B3600000000 /* _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min15.5 */ = { isa = PBXNativeTarget; buildConfigurationList = 84EFF508D5523A7B00000000 /* Build configuration list for PBXNativeTarget "_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000002D /* Sources */, + 4A9C8A580000000000000007 /* Sources */, ); buildRules = ( ); @@ -4738,29 +2058,9 @@ productReference = 6BF2BEB13FC2509200000000 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CEECB1197400000000 /* _idx_scheduler_queue_364511B6_ios_min11.0 */ = { + F2FE34CEF0AD942200000000 /* _idx_detection_projection_calculator_6C26583E_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF508735E8FC000000000 /* Build configuration list for PBXNativeTarget "_idx_scheduler_queue_364511B6_ios_min11.0" */; - buildPhases = ( - 4A9C8A58000000000000002C /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A71A9D19F00000000 /* PBXTargetDependency */, - 285B8B9ACC49096B00000000 /* PBXTargetDependency */, - 285B8B9A80D4856F00000000 /* PBXTargetDependency */, - 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, - ); - name = _idx_scheduler_queue_364511B6_ios_min11.0; - productName = _idx_scheduler_queue_364511B6_ios_min11.0; - productReference = 6BF2BEB1F7A9B6EE00000000 /* lib_idx_scheduler_queue_364511B6_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - F2FE34CEED47024C00000000 /* _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_0402C5B7_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF5086673135900000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_0402C5B7_ios_min15.5" */; + buildConfigurationList = 84EFF508101D379700000000 /* Build configuration list for PBXNativeTarget "_idx_detection_projection_calculator_6C26583E_ios_min15.5" */; buildPhases = ( 4A9C8A58000000000000001F /* Sources */, ); @@ -4768,22 +2068,15 @@ ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9AEE4F724300000000 /* PBXTargetDependency */, - 285B8B9AEE4F724300000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, - 285B8B9AAC80CFF100000000 /* PBXTargetDependency */, - 285B8B9A79D4949700000000 /* PBXTargetDependency */, - 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, ); - name = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_0402C5B7_ios_min15.5; - productName = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_0402C5B7_ios_min15.5; - productReference = 6BF2BEB1B988349400000000 /* lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_0402C5B7_ios_min15.5.a */; + name = _idx_detection_projection_calculator_6C26583E_ios_min15.5; + productName = _idx_detection_projection_calculator_6C26583E_ios_min15.5; + productReference = 6BF2BEB1D488EF1800000000 /* lib_idx_detection_projection_calculator_6C26583E_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CEEE4F724200000000 /* _idx_gpu_buffer_storage_gpu_buffer_format_06E221FF_ios_min15.5 */ = { + F2FE34CEFB2C360E00000000 /* _idx_detection_projection_calculator_6C26583E_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF5088E413F3200000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_gpu_buffer_format_06E221FF_ios_min15.5" */; + buildConfigurationList = 84EFF508DB52C34B00000000 /* Build configuration list for PBXNativeTarget "_idx_detection_projection_calculator_6C26583E_ios_min11.0" */; buildPhases = ( 4A9C8A58000000000000001E /* Sources */, ); @@ -4791,219 +2084,12 @@ ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A79D4949700000000 /* PBXTargetDependency */, - ); - name = _idx_gpu_buffer_storage_gpu_buffer_format_06E221FF_ios_min15.5; - productName = _idx_gpu_buffer_storage_gpu_buffer_format_06E221FF_ios_min15.5; - productReference = 6BF2BEB12E3CBFE400000000 /* lib_idx_gpu_buffer_storage_gpu_buffer_format_06E221FF_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - F2FE34CEEF9E075400000000 /* _idx_pixel_buffer_pool_util_F1B36E38_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF5080DDBE57E00000000 /* Build configuration list for PBXNativeTarget "_idx_pixel_buffer_pool_util_F1B36E38_ios_min15.5" */; - buildPhases = ( - 4A9C8A58000000000000001A /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - ); - name = _idx_pixel_buffer_pool_util_F1B36E38_ios_min15.5; - productName = _idx_pixel_buffer_pool_util_F1B36E38_ios_min15.5; - productReference = 6BF2BEB115B4CC0800000000 /* lib_idx_pixel_buffer_pool_util_F1B36E38_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - F2FE34CEEFD48CB400000000 /* _idx_image_gl_context_gpu_buffer_multi_pool_99A08626_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF5085F91827A00000000 /* Build configuration list for PBXNativeTarget "_idx_image_gl_context_gpu_buffer_multi_pool_99A08626_ios_min15.5" */; - buildPhases = ( - 4A9C8A580000000000000019 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9AF164385B00000000 /* PBXTargetDependency */, - 285B8B9AEF9E075500000000 /* PBXTargetDependency */, - 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, - 285B8B9A79D4949700000000 /* PBXTargetDependency */, - 285B8B9AAC80CFF100000000 /* PBXTargetDependency */, - 285B8B9AEE4F724300000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9AED47024D00000000 /* PBXTargetDependency */, - 285B8B9A66E95E1300000000 /* PBXTargetDependency */, - ); - name = _idx_image_gl_context_gpu_buffer_multi_pool_99A08626_ios_min15.5; - productName = _idx_image_gl_context_gpu_buffer_multi_pool_99A08626_ios_min15.5; - productReference = 6BF2BEB106B68BF400000000 /* lib_idx_image_gl_context_gpu_buffer_multi_pool_99A08626_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - F2FE34CEF0AD942200000000 /* _idx_detection_projection_calculator_6C26583E_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF508101D379700000000 /* Build configuration list for PBXNativeTarget "_idx_detection_projection_calculator_6C26583E_ios_min15.5" */; - buildPhases = ( - 4A9C8A58000000000000004F /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A1BB1D91900000000 /* PBXTargetDependency */, - ); - name = _idx_detection_projection_calculator_6C26583E_ios_min15.5; - productName = _idx_detection_projection_calculator_6C26583E_ios_min15.5; - productReference = 6BF2BEB1D488EF1800000000 /* lib_idx_detection_projection_calculator_6C26583E_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - F2FE34CEF164385A00000000 /* _idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF50867D1B86E00000000 /* Build configuration list for PBXNativeTarget "_idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min15.5" */; - buildPhases = ( - 4A9C8A580000000000000015 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9A66E95E1300000000 /* PBXTargetDependency */, - 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, - 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, - 285B8B9A79D4949700000000 /* PBXTargetDependency */, - 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, - 285B8B9A66E95E1300000000 /* PBXTargetDependency */, - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, - ); - name = _idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min15.5; - productName = _idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min15.5; - productReference = 6BF2BEB1CF0EECC200000000 /* lib_idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - F2FE34CEF437D55200000000 /* _idx_MPPMetalHelper_D24F76A1_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF5085B94398200000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalHelper_D24F76A1_ios_min11.0" */; - buildPhases = ( - 4A9C8A580000000000000020 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A8B4CD5DF00000000 /* PBXTargetDependency */, - ); - name = _idx_MPPMetalHelper_D24F76A1_ios_min11.0; - productName = _idx_MPPMetalHelper_D24F76A1_ios_min11.0; - productReference = 6BF2BEB15E15594A00000000 /* lib_idx_MPPMetalHelper_D24F76A1_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - F2FE34CEF43963A600000000 /* _idx_gl_calculator_helper_DC51F13C_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF5089778129500000000 /* Build configuration list for PBXNativeTarget "_idx_gl_calculator_helper_DC51F13C_ios_min11.0" */; - buildPhases = ( - 4A9C8A580000000000000035 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9ACC49096B00000000 /* PBXTargetDependency */, - 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, - 285B8B9A043D6EB900000000 /* PBXTargetDependency */, - 285B8B9A62520DF700000000 /* PBXTargetDependency */, - 285B8B9A12002F2D00000000 /* PBXTargetDependency */, - 285B8B9A5D24269700000000 /* PBXTargetDependency */, - 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, - 285B8B9A62520DF700000000 /* PBXTargetDependency */, - 285B8B9A71A9D19F00000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9A043D6EB900000000 /* PBXTargetDependency */, - 285B8B9A62520DF700000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9A4098134F00000000 /* PBXTargetDependency */, - 285B8B9AAB070CC500000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, - ); - name = _idx_gl_calculator_helper_DC51F13C_ios_min11.0; - productName = _idx_gl_calculator_helper_DC51F13C_ios_min11.0; - productReference = 6BF2BEB1EDF6BDAE00000000 /* lib_idx_gl_calculator_helper_DC51F13C_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - F2FE34CEF84C49B000000000 /* _idx_shader_util_C047EBB4_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF5089F87702200000000 /* Build configuration list for PBXNativeTarget "_idx_shader_util_C047EBB4_ios_min15.5" */; - buildPhases = ( - 4A9C8A58000000000000003E /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - ); - name = _idx_shader_util_C047EBB4_ios_min15.5; - productName = _idx_shader_util_C047EBB4_ios_min15.5; - productReference = 6BF2BEB1D65644E600000000 /* lib_idx_shader_util_C047EBB4_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - F2FE34CEFB2C360E00000000 /* _idx_detection_projection_calculator_6C26583E_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF508DB52C34B00000000 /* Build configuration list for PBXNativeTarget "_idx_detection_projection_calculator_6C26583E_ios_min11.0" */; - buildPhases = ( - 4A9C8A58000000000000004E /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9AC7F9A94500000000 /* PBXTargetDependency */, ); name = _idx_detection_projection_calculator_6C26583E_ios_min11.0; productName = _idx_detection_projection_calculator_6C26583E_ios_min11.0; productReference = 6BF2BEB126D0D2E600000000 /* lib_idx_detection_projection_calculator_6C26583E_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CEFE75ECB400000000 /* _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_87112A87_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF508E0B95D0800000000 /* Build configuration list for PBXNativeTarget "_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_87112A87_ios_min11.0" */; - buildPhases = ( - 4A9C8A580000000000000070 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A80D4856F00000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9AA616095700000000 /* PBXTargetDependency */, - 285B8B9AA616095700000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9A80D4856F00000000 /* PBXTargetDependency */, - 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, - 285B8B9A80D4856F00000000 /* PBXTargetDependency */, - 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, - 285B8B9A80D4856F00000000 /* PBXTargetDependency */, - 285B8B9A4098134F00000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9A762E872100000000 /* PBXTargetDependency */, - 285B8B9A71A9D19F00000000 /* PBXTargetDependency */, - 285B8B9A62520DF700000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, - 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, - 285B8B9AF43963A700000000 /* PBXTargetDependency */, - ); - name = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_87112A87_ios_min11.0; - productName = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_87112A87_ios_min11.0; - productReference = 6BF2BEB1E29809CA00000000 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_87112A87_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; /* End PBXNativeTarget section */ /* Begin PBXProject section */ @@ -5024,12 +2110,6 @@ targets = ( F2FE34CE0C5C7AFE00000000 /* OlaFaceUnityFramework */, E9F6BC4B3AD2DEC400000000 /* _bazel_clean_ */, - F2FE34CE4EC3F25E00000000 /* _idx_MPPGraphGPUData_39C9C70C_ios_min11.0 */, - F2FE34CE0BF0E74000000000 /* _idx_MPPGraphGPUData_39C9C70C_ios_min15.5 */, - F2FE34CEF437D55200000000 /* _idx_MPPMetalHelper_D24F76A1_ios_min11.0 */, - F2FE34CE4581F61200000000 /* _idx_MPPMetalHelper_D24F76A1_ios_min15.5 */, - F2FE34CE270212EE00000000 /* _idx_MPPMetalUtil_455751A0_ios_min11.0 */, - F2FE34CE0F49CEEC00000000 /* _idx_MPPMetalUtil_455751A0_ios_min15.5 */, F2FE34CE4E15716800000000 /* _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min11.0 */, F2FE34CEECAE0B3600000000 /* _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min15.5 */, F2FE34CE87E6141C00000000 /* _idx_annotation_overlay_calculator_D98E9275_ios_min11.0 */, @@ -5044,44 +2124,14 @@ F2FE34CE97A002A600000000 /* _idx_core_BeautyFilters_core-ios_3FD503C6_ios_min15.5 */, F2FE34CEE4F68A4800000000 /* _idx_cpu_op_resolver_519CBACD_ios_min11.0 */, F2FE34CE2E1AEAFA00000000 /* _idx_cpu_op_resolver_519CBACD_ios_min15.5 */, + F2FE34CEE3255C4200000000 /* _idx_cpu_util_C9677097_ios_min11.0 */, + F2FE34CE3ED3804A00000000 /* _idx_cpu_util_C9677097_ios_min15.5 */, F2FE34CEFB2C360E00000000 /* _idx_detection_projection_calculator_6C26583E_ios_min11.0 */, F2FE34CEF0AD942200000000 /* _idx_detection_projection_calculator_6C26583E_ios_min15.5 */, - F2FE34CEBEE3CE7400000000 /* _idx_file_path_E61EA0A1_ios_min11.0 */, - F2FE34CED4B7599C00000000 /* _idx_file_path_E61EA0A1_ios_min15.5 */, - F2FE34CEF43963A600000000 /* _idx_gl_calculator_helper_DC51F13C_ios_min11.0 */, - F2FE34CE3CEC689C00000000 /* _idx_gl_calculator_helper_DC51F13C_ios_min15.5 */, - F2FE34CE60F40B8000000000 /* _idx_gl_simple_shaders_CB7AD146_ios_min11.0 */, - F2FE34CE717FBD3200000000 /* _idx_gl_simple_shaders_CB7AD146_ios_min15.5 */, - F2FE34CE043D6EB800000000 /* _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_0402C5B7_ios_min11.0 */, - F2FE34CEED47024C00000000 /* _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_0402C5B7_ios_min15.5 */, - F2FE34CEAB070CC400000000 /* _idx_gpu_buffer_storage_gpu_buffer_format_06E221FF_ios_min11.0 */, - F2FE34CEEE4F724200000000 /* _idx_gpu_buffer_storage_gpu_buffer_format_06E221FF_ios_min15.5 */, - F2FE34CE4098134E00000000 /* _idx_image_frame_graph_tracer_4E004B23_ios_min11.0 */, - F2FE34CE79D4949600000000 /* _idx_image_frame_graph_tracer_4E004B23_ios_min15.5 */, - F2FE34CE62520DF600000000 /* _idx_image_gl_context_gpu_buffer_multi_pool_99A08626_ios_min11.0 */, - F2FE34CEEFD48CB400000000 /* _idx_image_gl_context_gpu_buffer_multi_pool_99A08626_ios_min15.5 */, - F2FE34CEDF5731D000000000 /* _idx_image_opencv_9E4E8A87_ios_min11.0 */, - F2FE34CE20F64D9800000000 /* _idx_image_opencv_9E4E8A87_ios_min15.5 */, - F2FE34CE12002F2C00000000 /* _idx_image_properties_calculator_gpu_service_56DC0B61_ios_min11.0 */, - F2FE34CE45BF9C0200000000 /* _idx_image_properties_calculator_gpu_service_56DC0B61_ios_min15.5 */, - F2FE34CEBCF3D3C600000000 /* _idx_image_to_tensor_calculator_FF109E68_ios_min11.0 */, - F2FE34CE3733EA8C00000000 /* _idx_image_to_tensor_calculator_FF109E68_ios_min15.5 */, - F2FE34CE958D8C7600000000 /* _idx_image_to_tensor_converter_metal_4060E9DC_ios_min11.0 */, - F2FE34CEC49D7CB200000000 /* _idx_image_to_tensor_converter_metal_4060E9DC_ios_min15.5 */, - F2FE34CEE60E967A00000000 /* _idx_image_to_tensor_converter_opencv_22266321_ios_min11.0 */, - F2FE34CE4A0F047C00000000 /* _idx_image_to_tensor_converter_opencv_22266321_ios_min15.5 */, - F2FE34CE091FB26A00000000 /* _idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min11.0 */, - F2FE34CE22E7A19200000000 /* _idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min15.5 */, - F2FE34CEDBAB600200000000 /* _idx_inference_calculator_interface_inference_calculator_cpu_EC7FC897_ios_min11.0 */, - F2FE34CE8B56A57800000000 /* _idx_inference_calculator_interface_inference_calculator_cpu_EC7FC897_ios_min15.5 */, - F2FE34CEC17A4F8000000000 /* _idx_inference_calculator_metal_9450E505_ios_min11.0 */, - F2FE34CE66EAEF7400000000 /* _idx_inference_calculator_metal_9450E505_ios_min15.5 */, - F2FE34CEC7F9A94400000000 /* _idx_location_image_frame_opencv_D6F50F87_ios_min11.0 */, - F2FE34CE1BB1D91800000000 /* _idx_location_image_frame_opencv_D6F50F87_ios_min15.5 */, + F2FE34CE564601F800000000 /* _idx_end_loop_calculator_AADF2B85_ios_min11.0 */, + F2FE34CE1D7E686A00000000 /* _idx_end_loop_calculator_AADF2B85_ios_min15.5 */, F2FE34CE7E674A3800000000 /* _idx_math_68C63536_ios_min11.0 */, F2FE34CE7E908C2800000000 /* _idx_math_68C63536_ios_min15.5 */, - F2FE34CE721498C400000000 /* _idx_matrix_E57ACF41_ios_min11.0 */, - F2FE34CE148AEA4600000000 /* _idx_matrix_E57ACF41_ios_min15.5 */, F2FE34CE1AC4218A00000000 /* _idx_max_unpooling_max_pool_argmax_615F909D_ios_min11.0 */, F2FE34CE216C14B800000000 /* _idx_max_unpooling_max_pool_argmax_615F909D_ios_min15.5 */, F2FE34CE8B4CD5DE00000000 /* _idx_mediapipe_framework_ios_C158E828_ios_min11.0 */, @@ -5092,52 +2142,26 @@ F2FE34CE7FF66ACC00000000 /* _idx_olamodule_common_library_63E72567_ios_min15.5 */, F2FE34CE019362DC00000000 /* _idx_op_resolver_0836C983_ios_min11.0 */, F2FE34CE94BE0ED400000000 /* _idx_op_resolver_0836C983_ios_min15.5 */, - F2FE34CE71A9D19E00000000 /* _idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min11.0 */, - F2FE34CEAC80CFF000000000 /* _idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min15.5 */, - F2FE34CE0552442E00000000 /* _idx_pixel_buffer_pool_util_F1B36E38_ios_min11.0 */, - F2FE34CEEF9E075400000000 /* _idx_pixel_buffer_pool_util_F1B36E38_ios_min15.5 */, - F2FE34CEA616095600000000 /* _idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min11.0 */, - F2FE34CE5B9442FC00000000 /* _idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min15.5 */, - F2FE34CE48F8627E00000000 /* _idx_profiler_resource_util_35C39BA3_ios_min11.0 */, - F2FE34CEDBC0365200000000 /* _idx_profiler_resource_util_35C39BA3_ios_min15.5 */, - F2FE34CE9CD320B600000000 /* _idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min11.0 */, - F2FE34CE70815F2C00000000 /* _idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min15.5 */, + F2FE34CEC9EF5A9E00000000 /* _idx_previous_loopback_calculator_header_util_D60754F6_ios_min11.0 */, + F2FE34CE07268A4800000000 /* _idx_previous_loopback_calculator_header_util_D60754F6_ios_min15.5 */, + F2FE34CEBC6B4FBA00000000 /* _idx_rectangle_util_BC608102_ios_min11.0 */, + F2FE34CE61FD1EC600000000 /* _idx_rectangle_util_BC608102_ios_min15.5 */, + F2FE34CE10832CE000000000 /* _idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min11.0 */, + F2FE34CEAEE1CD9600000000 /* _idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min15.5 */, F2FE34CE762E872000000000 /* _idx_resource_util_C5C5DB93_ios_min11.0 */, F2FE34CE9B64E5B400000000 /* _idx_resource_util_C5C5DB93_ios_min15.5 */, - F2FE34CEECB1197400000000 /* _idx_scheduler_queue_364511B6_ios_min11.0 */, - F2FE34CE605975F200000000 /* _idx_scheduler_queue_364511B6_ios_min15.5 */, - F2FE34CE5D24269600000000 /* _idx_shader_util_C047EBB4_ios_min11.0 */, - F2FE34CEF84C49B000000000 /* _idx_shader_util_C047EBB4_ios_min15.5 */, F2FE34CEDDBFB5A200000000 /* _idx_split_vector_calculator_ED1EBC41_ios_min11.0 */, F2FE34CE06501FEA00000000 /* _idx_split_vector_calculator_ED1EBC41_ios_min15.5 */, - F2FE34CE192D58FA00000000 /* _idx_tensor_7303F5EA_ios_min11.0 */, - F2FE34CE486DB1DC00000000 /* _idx_tensor_7303F5EA_ios_min15.5 */, - F2FE34CE0173533000000000 /* _idx_tensors_to_detections_calculator_39B944A4_ios_min11.0 */, - F2FE34CECC45E21A00000000 /* _idx_tensors_to_detections_calculator_39B944A4_ios_min15.5 */, - F2FE34CEB4C5EF0600000000 /* _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_717D4ABA_ios_min11.0 */, - F2FE34CE7BDEC79000000000 /* _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_717D4ABA_ios_min15.5 */, - F2FE34CE9988932800000000 /* _idx_tflite_custom_op_resolver_calculator_772D286F_ios_min11.0 */, - F2FE34CE5CD7B2DA00000000 /* _idx_tflite_custom_op_resolver_calculator_772D286F_ios_min15.5 */, - F2FE34CEA13C97FE00000000 /* _idx_tflite_model_calculator_end_loop_calculator_38D3CDB2_ios_min11.0 */, - F2FE34CE3DB4BB0000000000 /* _idx_tflite_model_calculator_end_loop_calculator_38D3CDB2_ios_min15.5 */, F2FE34CE6729A1D000000000 /* _idx_tflite_model_loader_254BEB33_ios_min11.0 */, F2FE34CE2C307FC200000000 /* _idx_tflite_model_loader_254BEB33_ios_min15.5 */, - F2FE34CE8D69C4A200000000 /* _idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min11.0 */, - F2FE34CE66E95E1200000000 /* _idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min15.5 */, - F2FE34CEFE75ECB400000000 /* _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_87112A87_ios_min11.0 */, - F2FE34CED7BFBE2C00000000 /* _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_87112A87_ios_min15.5 */, - F2FE34CECC49096A00000000 /* _idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min11.0 */, - F2FE34CE6EE3185E00000000 /* _idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min15.5 */, + F2FE34CE3E7A910800000000 /* _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min11.0 */, + F2FE34CEE493101600000000 /* _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min15.5 */, F2FE34CE1838F83E00000000 /* _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min11.0 */, F2FE34CE0F58F30800000000 /* _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min15.5 */, F2FE34CE9CDDB50C00000000 /* _idx_transpose_conv_bias_E3459F40_ios_min11.0 */, F2FE34CE9CC89BB200000000 /* _idx_transpose_conv_bias_E3459F40_ios_min15.5 */, - F2FE34CEDDC0B1B200000000 /* _idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min11.0 */, - F2FE34CEF164385A00000000 /* _idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min15.5 */, - F2FE34CE80D4856E00000000 /* _idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min11.0 */, - F2FE34CEDBE24C2C00000000 /* _idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min15.5 */, - F2FE34CE7AADD3C400000000 /* _idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min11.0 */, - F2FE34CE5631D7AC00000000 /* _idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min15.5 */, + F2FE34CEB4F98C9E00000000 /* _idx_util_C76AD427_ios_min11.0 */, + F2FE34CE87D26E7400000000 /* _idx_util_C76AD427_ios_min15.5 */, F2FE34CED4660C9200000000 /* mediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary */, ); }; @@ -5180,460 +2204,6 @@ /* Begin PBXSourcesBuildPhase section */ 4A9C8A580000000000000000 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301C471843E00000000 /* MPPGraphGPUData.mm in gpu */, - FF950301C3C01D9000000000 /* gpu_shared_data_internal.cc in gpu */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000001 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301B6988F9900000000 /* image.cc in formats */, - FF9503010E7AA6A100000000 /* gl_context.cc in gpu */, - FF9503015361890F00000000 /* gl_context_eagl.cc in gpu */, - FF9503011615959C00000000 /* gpu_buffer_multi_pool.cc in gpu */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000002 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301202F72AF00000000 /* util.cc in objc */, - FF9503018E62014A00000000 /* calculator_contract.cc in framework */, - FF950301095EF97200000000 /* fill_packet_set.cc in tool */, - FF9503012C20ABC800000000 /* graph_service_manager.cc in framework */, - FF950301B3D8E01500000000 /* input_side_packet_handler.cc in framework */, - FF950301196F87BE00000000 /* input_stream_manager.cc in framework */, - FF9503015176F86500000000 /* input_stream_shard.cc in framework */, - FF950301EFCD23DE00000000 /* node.cc in api2 */, - FF950301D265CD3E00000000 /* output_side_packet_impl.cc in framework */, - FF950301051CE57300000000 /* output_stream_shard.cc in framework */, - FF9503015369E8AC00000000 /* packet.cc in framework */, - FF950301C0242BD100000000 /* packet.cc in api2 */, - FF950301EC826FBE00000000 /* packet_type.cc in framework */, - FF950301CB59887700000000 /* subgraph.cc in framework */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000003 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301F50E8E8800000000 /* validated_graph_config.cc in framework */, - FF95030173FC11FB00000000 /* calculator_base.cc in framework */, - FF95030112EE194500000000 /* calculator_context.cc in framework */, - FF95030116BDCDE400000000 /* calculator_context_manager.cc in framework */, - FF950301B90D6AD700000000 /* calculator_state.cc in framework */, - FF950301676E503E00000000 /* legacy_calculator_support.cc in framework */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000004 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301C42F44E800000000 /* validate_name.cc in tool */, - FF950301E6069BD500000000 /* callback_packet_calculator.cc in internal */, - FF950301FE21B94600000000 /* delegating_executor.cc in framework */, - FF950301953F4C1900000000 /* executor.cc in framework */, - FF9503013C0D6D5B00000000 /* image_to_tensor_utils.cc in tensor */, - FF95030179C61E6000000000 /* name_util.cc in tool */, - FF950301217E6F9B00000000 /* options_field_util.cc in tool */, - FF950301CF12C0C800000000 /* options_registry.cc in tool */, - FF950301D822317800000000 /* options_syntax_util.cc in tool */, - FF9503011622036E00000000 /* options_util.cc in tool */, - FF9503014EA6318000000000 /* packet_generator_graph.cc in framework */, - FF95030182E727FD00000000 /* packet_generator_wrapper_calculator.cc in tool */, - FF9503019343B56C00000000 /* proto_util_lite.cc in tool */, - FF9503013B1C97FA00000000 /* rectangle_util.cc in util */, - FF9503019F1006A000000000 /* subgraph_expansion.cc in tool */, - FF950301903FFB7900000000 /* tag_map.cc in tool */, - FF950301125965EB00000000 /* tag_map_helper.cc in tool */, - FF9503013824086F00000000 /* template_expander.cc in tool */, - FF950301CC1CEC7400000000 /* thread_pool_executor.cc in framework */, - FF95030194ACD3D200000000 /* validate.cc in tool */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000005 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301EF2DB52100000000 /* topologicalsorter.cc in deps */, - FF950301DB9D1C2A00000000 /* clock.cc in deps */, - FF950301EE3C320400000000 /* monotonic_clock.cc in deps */, - FF950301CD235A4400000000 /* counter_factory.cc in framework */, - FF9503014FE9977200000000 /* registration.cc in deps */, - FF950301412CF91400000000 /* ret_check.cc in deps */, - FF9503010F561D5C00000000 /* status.cc in deps */, - FF9503016E1A9C2D00000000 /* status_builder.cc in deps */, - FF95030113274D1100000000 /* status_util.cc in tool */, - FF950301894A474700000000 /* threadpool_pthread_impl.cc in deps */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000006 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF9503014F3A671800000000 /* registration_token.cc in deps */, - FF9503015CAB504600000000 /* math.cpp in core */, - FF9503012D3894B500000000 /* GPUImageUtil.cpp in core */, - FF950301EA0F1F1F00000000 /* Ref.cpp in core */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000007 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF9503010DAD0F4C00000000 /* timestamp.cc in framework */, - FF95030113D967B800000000 /* collection_item_id.cc in framework */, - FF9503016EE5C41200000000 /* cpu_util.cc in util */, - FF9503017B0DE23500000000 /* file_helpers.cc in deps */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000008 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF9503017CA09C8900000000 /* file_path.cc in deps */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000009 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF9503016DADEE7000000000 /* image_frame.cc in formats */, - FF950301CF0DF08C00000000 /* graph_tracer.cc in profiler */, - FF9503019CBDC5A500000000 /* trace_builder.cc in profiler */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A58000000000000000A /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF9503011D16CB6700000000 /* pixel_buffer_pool_util.mm in gpu */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A58000000000000000B /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF9503012467AA1E00000000 /* output_stream_manager.cc in framework */, - FF9503014CC60F6C00000000 /* calculator_node.cc in framework */, - FF95030198F8470300000000 /* default_input_stream_handler.cc in stream_handler */, - FF950301176DF12500000000 /* fixed_size_input_stream_handler.cc in stream_handler */, - FF95030103047E7100000000 /* graph_output_stream.cc in framework */, - FF950301A3360C7800000000 /* immediate_input_stream_handler.cc in stream_handler */, - FF95030108D791BD00000000 /* input_stream_handler.cc in framework */, - FF950301BAE062CD00000000 /* output_stream_handler.cc in framework */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A58000000000000000C /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF95030179275DA200000000 /* in_order_output_stream_handler.cc in stream_handler */, - FF950301BAF6D7FB00000000 /* graph_profiler.cc in profiler */, - FF950301D90020AA00000000 /* gl_context_profiler.cc in profiler */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A58000000000000000D /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301AC57DDE300000000 /* profiler_resource_util_common.cc in profiler */, - FF9503015F87272300000000 /* profiler_resource_util_ios.cc in profiler */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A58000000000000000E /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301045C5E6900000000 /* gpu_buffer_storage.cc in gpu */, - FF950301C23D5A8900000000 /* gpu_buffer_format.cc in gpu */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A58000000000000000F /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301E63D507200000000 /* gpu_buffer_storage_cv_pixel_buffer.cc in gpu */, - FF95030147B18A7C00000000 /* gl_texture_buffer.cc in gpu */, - FF950301F413FAAB00000000 /* gl_texture_buffer_pool.cc in gpu */, - FF9503019DC0A85E00000000 /* gl_texture_view.cc in gpu */, - FF9503018D3D681400000000 /* gpu_buffer.cc in gpu */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000010 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301C471843E00000001 /* MPPGraphGPUData.mm in gpu */, - FF950301C3C01D9000000001 /* gpu_shared_data_internal.cc in gpu */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000011 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301F50E8E8800000001 /* validated_graph_config.cc in framework */, - FF95030173FC11FB00000001 /* calculator_base.cc in framework */, - FF95030112EE194500000001 /* calculator_context.cc in framework */, - FF95030116BDCDE400000001 /* calculator_context_manager.cc in framework */, - FF950301B90D6AD700000001 /* calculator_state.cc in framework */, - FF950301676E503E00000001 /* legacy_calculator_support.cc in framework */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000012 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301C42F44E800000001 /* validate_name.cc in tool */, - FF950301E6069BD500000001 /* callback_packet_calculator.cc in internal */, - FF950301FE21B94600000001 /* delegating_executor.cc in framework */, - FF950301953F4C1900000001 /* executor.cc in framework */, - FF9503013C0D6D5B00000001 /* image_to_tensor_utils.cc in tensor */, - FF95030179C61E6000000001 /* name_util.cc in tool */, - FF950301217E6F9B00000001 /* options_field_util.cc in tool */, - FF950301CF12C0C800000001 /* options_registry.cc in tool */, - FF950301D822317800000001 /* options_syntax_util.cc in tool */, - FF9503011622036E00000001 /* options_util.cc in tool */, - FF9503014EA6318000000001 /* packet_generator_graph.cc in framework */, - FF95030182E727FD00000001 /* packet_generator_wrapper_calculator.cc in tool */, - FF9503019343B56C00000001 /* proto_util_lite.cc in tool */, - FF9503013B1C97FA00000001 /* rectangle_util.cc in util */, - FF9503019F1006A000000001 /* subgraph_expansion.cc in tool */, - FF950301903FFB7900000001 /* tag_map.cc in tool */, - FF950301125965EB00000001 /* tag_map_helper.cc in tool */, - FF9503013824086F00000001 /* template_expander.cc in tool */, - FF950301CC1CEC7400000001 /* thread_pool_executor.cc in framework */, - FF95030194ACD3D200000001 /* validate.cc in tool */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000013 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301EF2DB52100000001 /* topologicalsorter.cc in deps */, - FF950301DB9D1C2A00000001 /* clock.cc in deps */, - FF950301EE3C320400000001 /* monotonic_clock.cc in deps */, - FF950301CD235A4400000001 /* counter_factory.cc in framework */, - FF9503014FE9977200000001 /* registration.cc in deps */, - FF950301412CF91400000001 /* ret_check.cc in deps */, - FF9503010F561D5C00000001 /* status.cc in deps */, - FF9503016E1A9C2D00000001 /* status_builder.cc in deps */, - FF95030113274D1100000001 /* status_util.cc in tool */, - FF950301894A474700000001 /* threadpool_pthread_impl.cc in deps */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000014 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF9503014F3A671800000001 /* registration_token.cc in deps */, - FF9503015CAB504600000001 /* math.cpp in core */, - FF9503012D3894B500000001 /* GPUImageUtil.cpp in core */, - FF950301EA0F1F1F00000001 /* Ref.cpp in core */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000015 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301202F72AF00000001 /* util.cc in objc */, - FF9503018E62014A00000001 /* calculator_contract.cc in framework */, - FF950301095EF97200000001 /* fill_packet_set.cc in tool */, - FF9503012C20ABC800000001 /* graph_service_manager.cc in framework */, - FF950301B3D8E01500000001 /* input_side_packet_handler.cc in framework */, - FF950301196F87BE00000001 /* input_stream_manager.cc in framework */, - FF9503015176F86500000001 /* input_stream_shard.cc in framework */, - FF950301EFCD23DE00000001 /* node.cc in api2 */, - FF950301D265CD3E00000001 /* output_side_packet_impl.cc in framework */, - FF950301051CE57300000001 /* output_stream_shard.cc in framework */, - FF9503015369E8AC00000001 /* packet.cc in framework */, - FF950301C0242BD100000001 /* packet.cc in api2 */, - FF950301EC826FBE00000001 /* packet_type.cc in framework */, - FF950301CB59887700000001 /* subgraph.cc in framework */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000016 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF9503010DAD0F4C00000001 /* timestamp.cc in framework */, - FF95030113D967B800000001 /* collection_item_id.cc in framework */, - FF9503016EE5C41200000001 /* cpu_util.cc in util */, - FF9503017B0DE23500000001 /* file_helpers.cc in deps */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000017 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF9503017CA09C8900000001 /* file_path.cc in deps */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000018 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF9503016DADEE7000000001 /* image_frame.cc in formats */, - FF950301CF0DF08C00000001 /* graph_tracer.cc in profiler */, - FF9503019CBDC5A500000001 /* trace_builder.cc in profiler */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000019 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301B6988F9900000001 /* image.cc in formats */, - FF9503010E7AA6A100000001 /* gl_context.cc in gpu */, - FF9503015361890F00000001 /* gl_context_eagl.cc in gpu */, - FF9503011615959C00000001 /* gpu_buffer_multi_pool.cc in gpu */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A58000000000000001A /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF9503011D16CB6700000001 /* pixel_buffer_pool_util.mm in gpu */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A58000000000000001B /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF9503012467AA1E00000001 /* output_stream_manager.cc in framework */, - FF9503014CC60F6C00000001 /* calculator_node.cc in framework */, - FF95030198F8470300000001 /* default_input_stream_handler.cc in stream_handler */, - FF950301176DF12500000001 /* fixed_size_input_stream_handler.cc in stream_handler */, - FF95030103047E7100000001 /* graph_output_stream.cc in framework */, - FF950301A3360C7800000001 /* immediate_input_stream_handler.cc in stream_handler */, - FF95030108D791BD00000001 /* input_stream_handler.cc in framework */, - FF950301BAE062CD00000001 /* output_stream_handler.cc in framework */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A58000000000000001C /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF95030179275DA200000001 /* in_order_output_stream_handler.cc in stream_handler */, - FF950301BAF6D7FB00000001 /* graph_profiler.cc in profiler */, - FF950301D90020AA00000001 /* gl_context_profiler.cc in profiler */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A58000000000000001D /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301AC57DDE300000001 /* profiler_resource_util_common.cc in profiler */, - FF9503015F87272300000001 /* profiler_resource_util_ios.cc in profiler */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A58000000000000001E /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301045C5E6900000001 /* gpu_buffer_storage.cc in gpu */, - FF950301C23D5A8900000001 /* gpu_buffer_format.cc in gpu */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A58000000000000001F /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301E63D507200000001 /* gpu_buffer_storage_cv_pixel_buffer.cc in gpu */, - FF95030147B18A7C00000001 /* gl_texture_buffer.cc in gpu */, - FF950301F413FAAB00000001 /* gl_texture_buffer_pool.cc in gpu */, - FF9503019DC0A85E00000001 /* gl_texture_view.cc in gpu */, - FF9503018D3D681400000001 /* gpu_buffer.cc in gpu */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000020 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301E2CCEE3B00000000 /* MPPMetalHelper.mm in gpu */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000021 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF9503019807610500000000 /* MPPGraph.mm in objc */, - FF9503011B77E8CB00000000 /* MPPTimestampConverter.mm in objc */, - FF9503016909A4FC00000000 /* NSError+util_status.mm in objc */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000022 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301E2CCEE3B00000001 /* MPPMetalHelper.mm in gpu */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000023 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF9503019807610500000001 /* MPPGraph.mm in objc */, - FF9503011B77E8CB00000001 /* MPPTimestampConverter.mm in objc */, - FF9503016909A4FC00000001 /* NSError+util_status.mm in objc */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000024 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF95030186EDD45D00000000 /* MPPMetalUtil.mm in gpu */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000025 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF95030186EDD45D00000001 /* MPPMetalUtil.mm in gpu */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000026 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5644,7 +2214,31 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000027 /* Sources */ = { + 4A9C8A580000000000000001 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF9503017071A1E200000000 /* ola_graph.cc in common */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A580000000000000002 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF9503016EE5C41200000000 /* cpu_util.cc in util */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A580000000000000003 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF950301202F72AF00000000 /* util.cc in objc */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A580000000000000004 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5701,7 +2295,17 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000028 /* Sources */ = { + 4A9C8A580000000000000005 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF950301EA0F1F1F00000000 /* Ref.cpp in core */, + FF9503015CAB504600000000 /* math.cpp in core */, + FF9503012D3894B500000000 /* GPUImageUtil.cpp in core */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A580000000000000006 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5713,43 +2317,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000029 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF9503017071A1E200000000 /* ola_graph.cc in common */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A58000000000000002A /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301908FF76600000000 /* previous_loopback_calculator.cc in core */, - FF950301FC0D516900000000 /* calculator_graph.cc in framework */, - FF9503012418B90200000000 /* scheduler.cc in framework */, - FF950301FFFFBBA500000000 /* header_util.cc in util */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A58000000000000002B /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301892D264500000000 /* image_properties_calculator.cc in image */, - FF950301D36B7DD000000000 /* gpu_service.cc in gpu */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A58000000000000002C /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301A3BD02C100000000 /* scheduler_queue.cc in framework */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A58000000000000002D /* Sources */ = { + 4A9C8A580000000000000007 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5760,7 +2328,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000002E /* Sources */ = { + 4A9C8A580000000000000008 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5817,7 +2385,17 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000002F /* Sources */ = { + 4A9C8A580000000000000009 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF950301EA0F1F1F00000001 /* Ref.cpp in core */, + FF9503015CAB504600000001 /* math.cpp in core */, + FF9503012D3894B500000001 /* GPUImageUtil.cpp in core */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A58000000000000000A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5829,7 +2407,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000030 /* Sources */ = { + 4A9C8A58000000000000000B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5837,35 +2415,23 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000031 /* Sources */ = { + 4A9C8A58000000000000000C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301908FF76600000001 /* previous_loopback_calculator.cc in core */, - FF950301FC0D516900000001 /* calculator_graph.cc in framework */, - FF9503012418B90200000001 /* scheduler.cc in framework */, - FF950301FFFFBBA500000001 /* header_util.cc in util */, + FF950301202F72AF00000001 /* util.cc in objc */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000032 /* Sources */ = { + 4A9C8A58000000000000000D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301A3BD02C100000001 /* scheduler_queue.cc in framework */, + FF9503016EE5C41200000001 /* cpu_util.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000033 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301892D264500000001 /* image_properties_calculator.cc in image */, - FF950301D36B7DD000000001 /* gpu_service.cc in gpu */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000034 /* Sources */ = { + 4A9C8A58000000000000000E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5873,32 +2439,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000035 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301CDB6653400000000 /* gl_calculator_helper.cc in gpu */, - FF950301646C577900000000 /* gl_calculator_helper_impl_common.cc in gpu */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000036 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF9503017D2972A300000000 /* shader_util.cc in gpu */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000037 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301664209C000000000 /* gl_simple_shaders.cc in gpu */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000038 /* Sources */ = { + 4A9C8A58000000000000000F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5906,16 +2447,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000039 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF95030104BA59E200000000 /* location.cc in formats */, - FF950301D3E5087100000000 /* image_frame_opencv.cc in formats */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A58000000000000003A /* Sources */ = { + 4A9C8A580000000000000010 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5923,7 +2455,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000003B /* Sources */ = { + 4A9C8A580000000000000011 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5931,41 +2463,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000003C /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF95030104BA59E200000001 /* location.cc in formats */, - FF950301D3E5087100000001 /* image_frame_opencv.cc in formats */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A58000000000000003D /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301CDB6653400000001 /* gl_calculator_helper.cc in gpu */, - FF950301646C577900000001 /* gl_calculator_helper_impl_common.cc in gpu */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A58000000000000003E /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF9503017D2972A300000001 /* shader_util.cc in gpu */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A58000000000000003F /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301664209C000000001 /* gl_simple_shaders.cc in gpu */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000040 /* Sources */ = { + 4A9C8A580000000000000012 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5973,15 +2471,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000041 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301224D079A00000000 /* matrix.cc in formats */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000042 /* Sources */ = { + 4A9C8A580000000000000013 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5989,15 +2479,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000043 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301224D079A00000001 /* matrix.cc in formats */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000044 /* Sources */ = { + 4A9C8A580000000000000014 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -6005,7 +2487,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000045 /* Sources */ = { + 4A9C8A580000000000000015 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -6013,7 +2495,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000046 /* Sources */ = { + 4A9C8A580000000000000016 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -6021,7 +2503,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000047 /* Sources */ = { + 4A9C8A580000000000000017 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -6031,7 +2513,15 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000048 /* Sources */ = { + 4A9C8A580000000000000018 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF950301F3F047F600000000 /* transpose_conv_bias.cc in operations */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A580000000000000019 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -6040,15 +2530,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000049 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301F3F047F600000000 /* transpose_conv_bias.cc in operations */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A58000000000000004A /* Sources */ = { + 4A9C8A58000000000000001A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -6056,7 +2538,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000004B /* Sources */ = { + 4A9C8A58000000000000001B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -6066,7 +2548,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000004C /* Sources */ = { + 4A9C8A58000000000000001C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -6075,7 +2557,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000004D /* Sources */ = { + 4A9C8A58000000000000001D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -6083,7 +2565,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000004E /* Sources */ = { + 4A9C8A58000000000000001E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -6091,7 +2573,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000004F /* Sources */ = { + 4A9C8A58000000000000001F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -6099,106 +2581,109 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000050 /* Sources */ = { + 4A9C8A580000000000000020 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301A54334CD00000000 /* image_opencv.cc in formats */, + FF950301B1BCD15C00000000 /* end_loop_calculator.cc in core */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000051 /* Sources */ = { + 4A9C8A580000000000000021 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301A54334CD00000001 /* image_opencv.cc in formats */, + FF950301B1BCD15C00000001 /* end_loop_calculator.cc in core */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000052 /* Sources */ = { + 4A9C8A580000000000000022 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301D924684600000000 /* image_to_tensor_calculator.cc in tensor */, + FF9503019807610500000000 /* MPPGraph.mm in objc */, + FF9503011B77E8CB00000000 /* MPPTimestampConverter.mm in objc */, + FF9503016909A4FC00000000 /* NSError+util_status.mm in objc */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000053 /* Sources */ = { + 4A9C8A580000000000000023 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301ABE2180800000000 /* tensor.cc in formats */, - FF950301A9411D1C00000000 /* tensor_ahwb.cc in formats */, + FF9503019807610500000001 /* MPPGraph.mm in objc */, + FF9503011B77E8CB00000001 /* MPPTimestampConverter.mm in objc */, + FF9503016909A4FC00000001 /* NSError+util_status.mm in objc */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000054 /* Sources */ = { + 4A9C8A580000000000000024 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF95030114E720D900000000 /* image_to_tensor_converter_opencv.cc in tensor */, + FF950301954B39AD00000000 /* non_max_suppression_calculator.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000055 /* Sources */ = { + 4A9C8A580000000000000025 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301D924684600000001 /* image_to_tensor_calculator.cc in tensor */, + FF950301954B39AD00000001 /* non_max_suppression_calculator.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000056 /* Sources */ = { + 4A9C8A580000000000000026 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301ABE2180800000001 /* tensor.cc in formats */, - FF950301A9411D1C00000001 /* tensor_ahwb.cc in formats */, + FF950301665E250A00000000 /* op_resolver.cc in tflite */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000057 /* Sources */ = { + 4A9C8A580000000000000027 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF95030114E720D900000001 /* image_to_tensor_converter_opencv.cc in tensor */, + FF950301665E250A00000001 /* op_resolver.cc in tflite */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000058 /* Sources */ = { + 4A9C8A580000000000000028 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301D73414D800000000 /* image_to_tensor_converter_metal.cc in tensor */, + FF950301908FF76600000000 /* previous_loopback_calculator.cc in core */, + FF950301FFFFBBA500000000 /* header_util.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000059 /* Sources */ = { + 4A9C8A580000000000000029 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301D73414D800000001 /* image_to_tensor_converter_metal.cc in tensor */, + FF950301908FF76600000001 /* previous_loopback_calculator.cc in core */, + FF950301FFFFBBA500000001 /* header_util.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000005A /* Sources */ = { + 4A9C8A58000000000000002A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301E73463BA00000000 /* inference_calculator.cc in tensor */, - FF950301E600CBCB00000000 /* inference_calculator_cpu.cc in tensor */, + FF9503013B1C97FA00000000 /* rectangle_util.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000005B /* Sources */ = { + 4A9C8A58000000000000002B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301F3CC262D00000000 /* tflite_model_loader.cc in tflite */, + FF9503013B1C97FA00000001 /* rectangle_util.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000005C /* Sources */ = { + 4A9C8A58000000000000002C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -6207,24 +2692,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000005D /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301E73463BA00000001 /* inference_calculator.cc in tensor */, - FF950301E600CBCB00000001 /* inference_calculator_cpu.cc in tensor */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A58000000000000005E /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301F3CC262D00000001 /* tflite_model_loader.cc in tflite */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A58000000000000005F /* Sources */ = { + 4A9C8A58000000000000002D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -6233,55 +2701,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000060 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301C19F2BDB00000000 /* inference_calculator_metal.cc in tensor */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000061 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301C19F2BDB00000001 /* inference_calculator_metal.cc in tensor */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000062 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301954B39AD00000000 /* non_max_suppression_calculator.cc in util */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000063 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301954B39AD00000001 /* non_max_suppression_calculator.cc in util */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000064 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301665E250A00000000 /* op_resolver.cc in tflite */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000065 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301665E250A00000001 /* op_resolver.cc in tflite */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000066 /* Sources */ = { + 4A9C8A58000000000000002E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -6289,7 +2709,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000067 /* Sources */ = { + 4A9C8A58000000000000002F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -6297,75 +2717,23 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000068 /* Sources */ = { + 4A9C8A580000000000000030 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF95030121BE9D3000000000 /* tensors_to_detections_calculator.cc in tensor */, + FF950301F3CC262D00000000 /* tflite_model_loader.cc in tflite */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000069 /* Sources */ = { + 4A9C8A580000000000000031 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF95030121BE9D3000000001 /* tensors_to_detections_calculator.cc in tensor */, + FF950301F3CC262D00000001 /* tflite_model_loader.cc in tflite */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000006A /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF9503018FD5523E00000000 /* tensors_to_landmarks_calculator.cc in tensor */, - FF9503017354A31A00000000 /* tensors_to_floats_calculator.cc in tensor */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A58000000000000006B /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF9503018FD5523E00000001 /* tensors_to_landmarks_calculator.cc in tensor */, - FF9503017354A31A00000001 /* tensors_to_floats_calculator.cc in tensor */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A58000000000000006C /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF9503019280C6F300000000 /* tflite_custom_op_resolver_calculator.cc in tflite */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A58000000000000006D /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF9503019280C6F300000001 /* tflite_custom_op_resolver_calculator.cc in tflite */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A58000000000000006E /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF9503019CEF571A00000000 /* tflite_model_calculator.cc in tflite */, - FF950301B1BCD15C00000000 /* end_loop_calculator.cc in core */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A58000000000000006F /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF9503019CEF571A00000001 /* tflite_model_calculator.cc in tflite */, - FF950301B1BCD15C00000001 /* end_loop_calculator.cc in core */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000070 /* Sources */ = { + 4A9C8A580000000000000032 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -6373,7 +2741,6 @@ FF950301041C1EB900000000 /* association_norm_rect_calculator.cc in util */, FF950301E82089DF00000000 /* collection_has_min_size_calculator.cc in util */, FF950301B9D8F94200000000 /* constant_side_packet_calculator.cc in core */, - FF9503018E3AEDD900000000 /* container_util.cc in tool */, FF95030176D31B5D00000000 /* detections_to_rects_calculator.cc in util */, FF95030136FBEB1A00000000 /* detections_to_render_data_calculator.cc in util */, FF950301511B4B0900000000 /* face_landmarks_to_render_data_calculator.cc in calculators */, @@ -6386,17 +2753,12 @@ FF950301A24CB7E500000000 /* local_file_contents_calculator.cc in util */, FF950301822EE40B00000000 /* rect_to_render_data_calculator.cc in util */, FF9503016988849800000000 /* rect_transformation_calculator.cc in util */, - FF9503018DA33BEA00000000 /* sink.cc in tool */, FF9503011EE26A2000000000 /* split_proto_list_calculator.cc in core */, - FF950301F500366D00000000 /* ssd_anchors_calculator.cc in tflite */, - FF950301663742CC00000000 /* switch_container.cc in tool */, - FF950301DEE2DFFC00000000 /* switch_demux_calculator.cc in tool */, - FF950301392E8DE400000000 /* switch_mux_calculator.cc in tool */, FF9503011ABE2CDD00000000 /* thresholding_calculator.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000071 /* Sources */ = { + 4A9C8A580000000000000033 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -6404,7 +2766,6 @@ FF950301041C1EB900000001 /* association_norm_rect_calculator.cc in util */, FF950301E82089DF00000001 /* collection_has_min_size_calculator.cc in util */, FF950301B9D8F94200000001 /* constant_side_packet_calculator.cc in core */, - FF9503018E3AEDD900000001 /* container_util.cc in tool */, FF95030176D31B5D00000001 /* detections_to_rects_calculator.cc in util */, FF95030136FBEB1A00000001 /* detections_to_render_data_calculator.cc in util */, FF950301511B4B0900000001 /* face_landmarks_to_render_data_calculator.cc in calculators */, @@ -6417,12 +2778,7 @@ FF950301A24CB7E500000001 /* local_file_contents_calculator.cc in util */, FF950301822EE40B00000001 /* rect_to_render_data_calculator.cc in util */, FF9503016988849800000001 /* rect_transformation_calculator.cc in util */, - FF9503018DA33BEA00000001 /* sink.cc in tool */, FF9503011EE26A2000000001 /* split_proto_list_calculator.cc in core */, - FF950301F500366D00000001 /* ssd_anchors_calculator.cc in tflite */, - FF950301663742CC00000001 /* switch_container.cc in tool */, - FF950301DEE2DFFC00000001 /* switch_demux_calculator.cc in tool */, - FF950301392E8DE400000001 /* switch_mux_calculator.cc in tool */, FF9503011ABE2CDD00000001 /* thresholding_calculator.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; @@ -6430,186 +2786,46 @@ /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 285B8B9A019362DD00000000 /* PBXTargetDependency */ = { + 285B8B9A07268A4900000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 6CA32826019362DD00000000 /* PBXContainerItemProxy */; - }; - 285B8B9A043D6EB900000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA32826043D6EB900000000 /* PBXContainerItemProxy */; - }; - 285B8B9A0552442F00000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA328260552442F00000000 /* PBXContainerItemProxy */; - }; - 285B8B9A091FB26B00000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA32826091FB26B00000000 /* PBXContainerItemProxy */; - }; - 285B8B9A0BF0E74100000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA328260BF0E74100000000 /* PBXContainerItemProxy */; - }; - 285B8B9A0F49CEED00000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA328260F49CEED00000000 /* PBXContainerItemProxy */; + targetProxy = 6CA3282607268A4900000000 /* PBXContainerItemProxy */; }; 285B8B9A0F58F30900000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; targetProxy = 6CA328260F58F30900000000 /* PBXContainerItemProxy */; }; - 285B8B9A12002F2D00000000 /* PBXTargetDependency */ = { + 285B8B9A10832CE100000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 6CA3282612002F2D00000000 /* PBXContainerItemProxy */; - }; - 285B8B9A148AEA4700000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA32826148AEA4700000000 /* PBXContainerItemProxy */; + targetProxy = 6CA3282610832CE100000000 /* PBXContainerItemProxy */; }; 285B8B9A1838F83F00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; targetProxy = 6CA328261838F83F00000000 /* PBXContainerItemProxy */; }; - 285B8B9A192D58FB00000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA32826192D58FB00000000 /* PBXContainerItemProxy */; - }; 285B8B9A1AC4218B00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; targetProxy = 6CA328261AC4218B00000000 /* PBXContainerItemProxy */; }; - 285B8B9A1BB1D91900000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA328261BB1D91900000000 /* PBXContainerItemProxy */; - }; - 285B8B9A20F64D9900000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA3282620F64D9900000000 /* PBXContainerItemProxy */; - }; 285B8B9A216C14B900000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; targetProxy = 6CA32826216C14B900000000 /* PBXContainerItemProxy */; }; - 285B8B9A22E7A19300000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA3282622E7A19300000000 /* PBXContainerItemProxy */; - }; - 285B8B9A270212EF00000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA32826270212EF00000000 /* PBXContainerItemProxy */; - }; - 285B8B9A2C307FC300000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA328262C307FC300000000 /* PBXContainerItemProxy */; - }; - 285B8B9A2E1AEAFB00000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA328262E1AEAFB00000000 /* PBXContainerItemProxy */; - }; 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; targetProxy = 6CA328263AD2DEC500000000 /* PBXContainerItemProxy */; }; - 285B8B9A3CEC689D00000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA328263CEC689D00000000 /* PBXContainerItemProxy */; - }; 285B8B9A3E081CF900000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; targetProxy = 6CA328263E081CF900000000 /* PBXContainerItemProxy */; }; - 285B8B9A4098134F00000000 /* PBXTargetDependency */ = { + 285B8B9A3ED3804B00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 6CA328264098134F00000000 /* PBXContainerItemProxy */; - }; - 285B8B9A4581F61300000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA328264581F61300000000 /* PBXContainerItemProxy */; - }; - 285B8B9A45BF9C0300000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA3282645BF9C0300000000 /* PBXContainerItemProxy */; - }; - 285B8B9A486DB1DD00000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA32826486DB1DD00000000 /* PBXContainerItemProxy */; - }; - 285B8B9A48F8627F00000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA3282648F8627F00000000 /* PBXContainerItemProxy */; - }; - 285B8B9A4A0F047D00000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA328264A0F047D00000000 /* PBXContainerItemProxy */; - }; - 285B8B9A4EC3F25F00000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA328264EC3F25F00000000 /* PBXContainerItemProxy */; - }; - 285B8B9A5631D7AD00000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA328265631D7AD00000000 /* PBXContainerItemProxy */; - }; - 285B8B9A5B9442FD00000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA328265B9442FD00000000 /* PBXContainerItemProxy */; - }; - 285B8B9A5D24269700000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA328265D24269700000000 /* PBXContainerItemProxy */; - }; - 285B8B9A605975F300000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA32826605975F300000000 /* PBXContainerItemProxy */; - }; - 285B8B9A60F40B8100000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA3282660F40B8100000000 /* PBXContainerItemProxy */; - }; - 285B8B9A62520DF700000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA3282662520DF700000000 /* PBXContainerItemProxy */; - }; - 285B8B9A66E95E1300000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA3282666E95E1300000000 /* PBXContainerItemProxy */; - }; - 285B8B9A6729A1D100000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA328266729A1D100000000 /* PBXContainerItemProxy */; - }; - 285B8B9A6EE3185F00000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA328266EE3185F00000000 /* PBXContainerItemProxy */; - }; - 285B8B9A70815F2D00000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA3282670815F2D00000000 /* PBXContainerItemProxy */; - }; - 285B8B9A717FBD3300000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA32826717FBD3300000000 /* PBXContainerItemProxy */; - }; - 285B8B9A71A9D19F00000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA3282671A9D19F00000000 /* PBXContainerItemProxy */; - }; - 285B8B9A721498C500000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA32826721498C500000000 /* PBXContainerItemProxy */; + targetProxy = 6CA328263ED3804B00000000 /* PBXContainerItemProxy */; }; 285B8B9A762E872100000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; targetProxy = 6CA32826762E872100000000 /* PBXContainerItemProxy */; }; - 285B8B9A79D4949700000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA3282679D4949700000000 /* PBXContainerItemProxy */; - }; - 285B8B9A7AADD3C500000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA328267AADD3C500000000 /* PBXContainerItemProxy */; - }; 285B8B9A7E674A3900000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; targetProxy = 6CA328267E674A3900000000 /* PBXContainerItemProxy */; @@ -6622,29 +2838,13 @@ isa = PBXTargetDependency; targetProxy = 6CA328267FF66ACD00000000 /* PBXContainerItemProxy */; }; - 285B8B9A80D4856F00000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA3282680D4856F00000000 /* PBXContainerItemProxy */; - }; 285B8B9A8489C38D00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; targetProxy = 6CA328268489C38D00000000 /* PBXContainerItemProxy */; }; - 285B8B9A8B4CD5DF00000000 /* PBXTargetDependency */ = { + 285B8B9A87D26E7500000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 6CA328268B4CD5DF00000000 /* PBXContainerItemProxy */; - }; - 285B8B9A8B56A57900000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA328268B56A57900000000 /* PBXContainerItemProxy */; - }; - 285B8B9A8D69C4A300000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA328268D69C4A300000000 /* PBXContainerItemProxy */; - }; - 285B8B9A94BE0ED500000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA3282694BE0ED500000000 /* PBXContainerItemProxy */; + targetProxy = 6CA3282687D26E7500000000 /* PBXContainerItemProxy */; }; 285B8B9A97A002A700000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -6658,117 +2858,33 @@ isa = PBXTargetDependency; targetProxy = 6CA328269CC89BB300000000 /* PBXContainerItemProxy */; }; - 285B8B9A9CD320B700000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA328269CD320B700000000 /* PBXContainerItemProxy */; - }; 285B8B9A9CDDB50D00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; targetProxy = 6CA328269CDDB50D00000000 /* PBXContainerItemProxy */; }; - 285B8B9AA616095700000000 /* PBXTargetDependency */ = { + 285B8B9AAEE1CD9700000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 6CA32826A616095700000000 /* PBXContainerItemProxy */; + targetProxy = 6CA32826AEE1CD9700000000 /* PBXContainerItemProxy */; }; - 285B8B9AAB070CC500000000 /* PBXTargetDependency */ = { + 285B8B9AB4F98C9F00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 6CA32826AB070CC500000000 /* PBXContainerItemProxy */; - }; - 285B8B9AAC80CFF100000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA32826AC80CFF100000000 /* PBXContainerItemProxy */; - }; - 285B8B9ABEE3CE7500000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA32826BEE3CE7500000000 /* PBXContainerItemProxy */; + targetProxy = 6CA32826B4F98C9F00000000 /* PBXContainerItemProxy */; }; 285B8B9AC180231D00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; targetProxy = 6CA32826C180231D00000000 /* PBXContainerItemProxy */; }; - 285B8B9AC7F9A94500000000 /* PBXTargetDependency */ = { + 285B8B9AC9EF5A9F00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 6CA32826C7F9A94500000000 /* PBXContainerItemProxy */; - }; - 285B8B9ACC49096B00000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA32826CC49096B00000000 /* PBXContainerItemProxy */; - }; - 285B8B9ACC596BC100000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA32826CC596BC100000000 /* PBXContainerItemProxy */; + targetProxy = 6CA32826C9EF5A9F00000000 /* PBXContainerItemProxy */; }; 285B8B9ACDF0E1D100000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; targetProxy = 6CA32826CDF0E1D100000000 /* PBXContainerItemProxy */; }; - 285B8B9AD4B7599D00000000 /* PBXTargetDependency */ = { + 285B8B9AE3255C4300000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 6CA32826D4B7599D00000000 /* PBXContainerItemProxy */; - }; - 285B8B9ADBAB600300000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA32826DBAB600300000000 /* PBXContainerItemProxy */; - }; - 285B8B9ADBC0365300000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA32826DBC0365300000000 /* PBXContainerItemProxy */; - }; - 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA32826DBE24C2D00000000 /* PBXContainerItemProxy */; - }; - 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA32826DDC0B1B300000000 /* PBXContainerItemProxy */; - }; - 285B8B9ADF5731D100000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA32826DF5731D100000000 /* PBXContainerItemProxy */; - }; - 285B8B9AE4F68A4900000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA32826E4F68A4900000000 /* PBXContainerItemProxy */; - }; - 285B8B9AE60E967B00000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA32826E60E967B00000000 /* PBXContainerItemProxy */; - }; - 285B8B9AECB1197500000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA32826ECB1197500000000 /* PBXContainerItemProxy */; - }; - 285B8B9AED47024D00000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA32826ED47024D00000000 /* PBXContainerItemProxy */; - }; - 285B8B9AEE4F724300000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA32826EE4F724300000000 /* PBXContainerItemProxy */; - }; - 285B8B9AEF9E075500000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA32826EF9E075500000000 /* PBXContainerItemProxy */; - }; - 285B8B9AEFD48CB500000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA32826EFD48CB500000000 /* PBXContainerItemProxy */; - }; - 285B8B9AF164385B00000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA32826F164385B00000000 /* PBXContainerItemProxy */; - }; - 285B8B9AF437D55300000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA32826F437D55300000000 /* PBXContainerItemProxy */; - }; - 285B8B9AF43963A700000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA32826F43963A700000000 /* PBXContainerItemProxy */; - }; - 285B8B9AF84C49B100000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA32826F84C49B100000000 /* PBXContainerItemProxy */; + targetProxy = 6CA32826E3255C4300000000 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ @@ -6852,7 +2968,7 @@ GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; HEADER_SEARCH_PATHS = ""; INFOPLIST_FILE = "${PROJECT_FILE_PATH}/.tulsi/Resources/StubInfoPlist.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "--version"; OTHER_LDFLAGS = "--version"; @@ -6925,11 +3041,12 @@ C1A2A5811882E1BB00000002 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/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_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++ -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_MPPGraphGPUData_39C9C70C_ios_min11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -6939,10 +3056,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_image_gl_context_gpu_buffer_multi_pool_99A08626_ios_min11.0; + PRODUCT_NAME = _idx_olamodule_common_library_63E72567_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -6952,10 +3069,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min11.0; + PRODUCT_NAME = _idx_cpu_util_C9677097_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -6965,10 +3082,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_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_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min11.0; + PRODUCT_NAME = _idx_util_C76AD427_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -6978,10 +3095,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_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_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = "_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min11.0"; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -6991,10 +3108,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_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 = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min11.0; + PRODUCT_NAME = _idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -7004,10 +3121,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min11.0; + PRODUCT_NAME = _idx_math_68C63536_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -7016,11 +3133,12 @@ C1A2A5811882E1BB00000009 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min11.0; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -7030,10 +3148,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_file_path_E61EA0A1_ios_min11.0; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = "_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min15.5"; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -7043,10 +3161,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_image_frame_graph_tracer_4E004B23_ios_min11.0; + PRODUCT_NAME = _idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -7056,10 +3174,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_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; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_pixel_buffer_pool_util_F1B36E38_ios_min11.0; + PRODUCT_NAME = _idx_math_68C63536_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -7069,10 +3187,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min11.0; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_olamodule_common_library_63E72567_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -7083,9 +3201,9 @@ buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min11.0; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_util_C76AD427_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -7096,9 +3214,9 @@ buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-ObjC++ -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_profiler_resource_util_35C39BA3_ios_min11.0; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_cpu_util_C9677097_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -7107,11 +3225,12 @@ C1A2A5811882E1BB00000010 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/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_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 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gpu_buffer_storage_gpu_buffer_format_06E221FF_ios_min11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_annotation_overlay_calculator_D98E9275_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -7120,11 +3239,12 @@ C1A2A5811882E1BB00000011 /* 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_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/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_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_0402C5B7_ios_min11.0; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_annotation_renderer_8D68840D_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -7133,11 +3253,12 @@ C1A2A5811882E1BB00000012 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/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_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++ -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_MPPGraphGPUData_39C9C70C_ios_min15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_annotation_overlay_calculator_D98E9275_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -7146,11 +3267,12 @@ C1A2A5811882E1BB00000013 /* 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_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_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_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min15.5; + PRODUCT_NAME = _idx_annotation_renderer_8D68840D_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -7160,10 +3282,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min15.5; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_begin_loop_calculator_50B5F6A2_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -7173,10 +3295,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/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 = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min15.5; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_begin_loop_calculator_50B5F6A2_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -7186,10 +3308,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min15.5; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_clip_vector_size_calculator_C1D859C1_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -7199,10 +3321,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/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 = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_clip_vector_size_calculator_C1D859C1_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -7212,10 +3334,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min15.5; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_cpu_op_resolver_519CBACD_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -7225,10 +3347,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_file_path_E61EA0A1_ios_min15.5; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -7238,10 +3360,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_image_frame_graph_tracer_4E004B23_ios_min15.5; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_transpose_conv_bias_E3459F40_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -7251,10 +3373,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_image_gl_context_gpu_buffer_multi_pool_99A08626_ios_min15.5; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_max_unpooling_max_pool_argmax_615F909D_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -7264,10 +3386,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_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/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 = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_pixel_buffer_pool_util_F1B36E38_ios_min15.5; + OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_cpu_op_resolver_519CBACD_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -7277,10 +3399,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_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/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 = "-DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min15.5; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -7290,10 +3412,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_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/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 = "-DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min15.5; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_max_unpooling_max_pool_argmax_615F909D_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -7303,10 +3425,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_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/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 = "-ObjC++ -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_profiler_resource_util_35C39BA3_ios_min15.5; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_transpose_conv_bias_E3459F40_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -7315,11 +3437,12 @@ C1A2A5811882E1BB00000020 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gpu_buffer_storage_gpu_buffer_format_06E221FF_ios_min15.5; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_detection_projection_calculator_6C26583E_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -7328,11 +3451,12 @@ C1A2A5811882E1BB00000021 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/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_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_0402C5B7_ios_min15.5; + PRODUCT_NAME = _idx_detection_projection_calculator_6C26583E_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -7342,10 +3466,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_MPPMetalHelper_D24F76A1_ios_min11.0; + PRODUCT_NAME = _idx_end_loop_calculator_AADF2B85_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -7355,10 +3479,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_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; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_mediapipe_framework_ios_C158E828_ios_min11.0; + PRODUCT_NAME = _idx_end_loop_calculator_AADF2B85_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -7368,10 +3492,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_MPPMetalHelper_D24F76A1_ios_min15.5; + PRODUCT_NAME = _idx_mediapipe_framework_ios_C158E828_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -7391,828 +3515,6 @@ name = Debug; }; C1A2A5811882E1BB00000026 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_MPPMetalUtil_455751A0_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000027 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_MPPMetalUtil_455751A0_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000028 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000029 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = "_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min11.0"; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB0000002A /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_math_68C63536_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB0000002B /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_olamodule_common_library_63E72567_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB0000002C /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB0000002D /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_image_properties_calculator_gpu_service_56DC0B61_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB0000002E /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-ObjC++ -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_scheduler_queue_364511B6_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB0000002F /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000030 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = "_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min15.5"; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000031 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_math_68C63536_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000032 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_olamodule_common_library_63E72567_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000033 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000034 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-ObjC++ -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_scheduler_queue_364511B6_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000035 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_image_properties_calculator_gpu_service_56DC0B61_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000036 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_annotation_overlay_calculator_D98E9275_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000037 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gl_calculator_helper_DC51F13C_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000038 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_shader_util_C047EBB4_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000039 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gl_simple_shaders_CB7AD146_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB0000003A /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_annotation_renderer_8D68840D_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB0000003B /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_location_image_frame_opencv_D6F50F87_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB0000003C /* 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 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_annotation_overlay_calculator_D98E9275_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB0000003D /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_annotation_renderer_8D68840D_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB0000003E /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_location_image_frame_opencv_D6F50F87_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB0000003F /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gl_calculator_helper_DC51F13C_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000040 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_shader_util_C047EBB4_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000041 /* 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 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gl_simple_shaders_CB7AD146_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000042 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_begin_loop_calculator_50B5F6A2_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000043 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_matrix_E57ACF41_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000044 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_begin_loop_calculator_50B5F6A2_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000045 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_matrix_E57ACF41_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000046 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_clip_vector_size_calculator_C1D859C1_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000047 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_clip_vector_size_calculator_C1D859C1_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000048 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_cpu_op_resolver_519CBACD_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000049 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB0000004A /* 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 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_max_unpooling_max_pool_argmax_615F909D_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB0000004B /* 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 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_transpose_conv_bias_E3459F40_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB0000004C /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_cpu_op_resolver_519CBACD_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB0000004D /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB0000004E /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_max_unpooling_max_pool_argmax_615F909D_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB0000004F /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_transpose_conv_bias_E3459F40_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000050 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_detection_projection_calculator_6C26583E_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000051 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_detection_projection_calculator_6C26583E_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000052 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_image_opencv_9E4E8A87_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000053 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_image_opencv_9E4E8A87_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000054 /* 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 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_image_to_tensor_calculator_FF109E68_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000055 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_tensor_7303F5EA_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000056 /* 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 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_image_to_tensor_converter_opencv_22266321_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000057 /* 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 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_image_to_tensor_calculator_FF109E68_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000058 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_tensor_7303F5EA_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000059 /* 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 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_image_to_tensor_converter_opencv_22266321_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB0000005A /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_image_to_tensor_converter_metal_4060E9DC_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB0000005B /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_image_to_tensor_converter_metal_4060E9DC_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB0000005C /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_inference_calculator_interface_inference_calculator_cpu_EC7FC897_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB0000005D /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_tflite_model_loader_254BEB33_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB0000005E /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-ObjC++ -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_resource_util_C5C5DB93_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB0000005F /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_inference_calculator_interface_inference_calculator_cpu_EC7FC897_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000060 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_tflite_model_loader_254BEB33_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000061 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-ObjC++ -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_resource_util_C5C5DB93_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000062 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_inference_calculator_metal_9450E505_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000063 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_inference_calculator_metal_9450E505_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000064 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -8226,7 +3528,7 @@ }; name = Debug; }; - C1A2A5811882E1BB00000065 /* Debug */ = { + C1A2A5811882E1BB00000027 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -8240,7 +3542,7 @@ }; name = Debug; }; - C1A2A5811882E1BB00000066 /* Debug */ = { + C1A2A5811882E1BB00000028 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -8253,7 +3555,7 @@ }; name = Debug; }; - C1A2A5811882E1BB00000067 /* Debug */ = { + C1A2A5811882E1BB00000029 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -8266,7 +3568,85 @@ }; name = Debug; }; - C1A2A5811882E1BB00000068 /* Debug */ = { + C1A2A5811882E1BB0000002A /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_previous_loopback_calculator_header_util_D60754F6_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB0000002B /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_previous_loopback_calculator_header_util_D60754F6_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB0000002C /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_rectangle_util_BC608102_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB0000002D /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_rectangle_util_BC608102_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB0000002E /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-ObjC++ -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_resource_util_C5C5DB93_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB0000002F /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-ObjC++ -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_resource_util_C5C5DB93_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB00000030 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -8279,7 +3659,7 @@ }; name = Debug; }; - C1A2A5811882E1BB00000069 /* Debug */ = { + C1A2A5811882E1BB00000031 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -8292,139 +3672,59 @@ }; name = Debug; }; - C1A2A5811882E1BB0000006A /* Debug */ = { + C1A2A5811882E1BB00000032 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_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 = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_tensors_to_detections_calculator_39B944A4_ios_min11.0; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tflite_model_loader_254BEB33_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB0000006B /* Debug */ = { + C1A2A5811882E1BB00000033 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_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 = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_tensors_to_detections_calculator_39B944A4_ios_min15.5; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tflite_model_loader_254BEB33_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB0000006C /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_717D4ABA_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB0000006D /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_717D4ABA_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB0000006E /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_tflite_custom_op_resolver_calculator_772D286F_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB0000006F /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_tflite_custom_op_resolver_calculator_772D286F_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000070 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_tflite_model_calculator_end_loop_calculator_38D3CDB2_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000071 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_tflite_model_calculator_end_loop_calculator_38D3CDB2_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000072 /* Debug */ = { + C1A2A5811882E1BB00000034 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_87112A87_ios_min11.0; + PRODUCT_NAME = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB00000073 /* Debug */ = { + C1A2A5811882E1BB00000035 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_87112A87_ios_min15.5; + PRODUCT_NAME = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB00000074 /* Debug */ = { + C1A2A5811882E1BB00000036 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = "Stub Launch Image"; @@ -8432,7 +3732,7 @@ DEBUG_INFORMATION_FORMAT = dwarf; GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; INFOPLIST_FILE = "${PROJECT_FILE_PATH}/.tulsi/Resources/StubInfoPlist.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; PRODUCT_NAME = "mediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary"; SDKROOT = iphoneos; TULSI_BUILD_PATH = mediapipe/render/module/beauty/ios/framework; @@ -8499,11 +3799,12 @@ C1A2A581215C43D600000002 /* 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_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/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_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++ -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_MPPGraphGPUData_39C9C70C_ios_min11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -8513,10 +3814,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_image_gl_context_gpu_buffer_multi_pool_99A08626_ios_min11.0; + PRODUCT_NAME = _idx_olamodule_common_library_63E72567_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -8526,10 +3827,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min11.0; + PRODUCT_NAME = _idx_cpu_util_C9677097_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -8539,10 +3840,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_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_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min11.0; + PRODUCT_NAME = _idx_util_C76AD427_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -8552,10 +3853,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_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_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = "_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min11.0"; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -8565,10 +3866,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_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 = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min11.0; + PRODUCT_NAME = _idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -8578,10 +3879,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min11.0; + PRODUCT_NAME = _idx_math_68C63536_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -8590,11 +3891,12 @@ C1A2A581215C43D600000009 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min11.0; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -8604,10 +3906,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_file_path_E61EA0A1_ios_min11.0; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = "_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min15.5"; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -8617,10 +3919,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_image_frame_graph_tracer_4E004B23_ios_min11.0; + PRODUCT_NAME = _idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -8630,10 +3932,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_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; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_pixel_buffer_pool_util_F1B36E38_ios_min11.0; + PRODUCT_NAME = _idx_math_68C63536_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -8643,10 +3945,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min11.0; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_olamodule_common_library_63E72567_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -8657,9 +3959,9 @@ buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min11.0; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_util_C76AD427_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -8670,9 +3972,9 @@ buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-ObjC++ -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_profiler_resource_util_35C39BA3_ios_min11.0; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_cpu_util_C9677097_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -8681,11 +3983,12 @@ C1A2A581215C43D600000010 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/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_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 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gpu_buffer_storage_gpu_buffer_format_06E221FF_ios_min11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_annotation_overlay_calculator_D98E9275_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -8694,11 +3997,12 @@ C1A2A581215C43D600000011 /* 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_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_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_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_0402C5B7_ios_min11.0; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_annotation_renderer_8D68840D_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -8707,11 +4011,12 @@ C1A2A581215C43D600000012 /* 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_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/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_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++ -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_MPPGraphGPUData_39C9C70C_ios_min15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_annotation_overlay_calculator_D98E9275_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -8720,11 +4025,12 @@ C1A2A581215C43D600000013 /* 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_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_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_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min15.5; + PRODUCT_NAME = _idx_annotation_renderer_8D68840D_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -8734,10 +4040,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min15.5; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_begin_loop_calculator_50B5F6A2_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -8747,10 +4053,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/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 = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min15.5; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_begin_loop_calculator_50B5F6A2_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -8760,10 +4066,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min15.5; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_clip_vector_size_calculator_C1D859C1_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -8773,10 +4079,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/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 = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_clip_vector_size_calculator_C1D859C1_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -8786,10 +4092,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min15.5; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_cpu_op_resolver_519CBACD_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -8799,10 +4105,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_file_path_E61EA0A1_ios_min15.5; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -8812,10 +4118,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_image_frame_graph_tracer_4E004B23_ios_min15.5; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_transpose_conv_bias_E3459F40_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -8825,10 +4131,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_image_gl_context_gpu_buffer_multi_pool_99A08626_ios_min15.5; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_max_unpooling_max_pool_argmax_615F909D_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -8838,10 +4144,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_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/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 = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_pixel_buffer_pool_util_F1B36E38_ios_min15.5; + OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_cpu_op_resolver_519CBACD_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -8851,10 +4157,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_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/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 = "-DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min15.5; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -8864,10 +4170,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_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/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 = "-DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min15.5; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_max_unpooling_max_pool_argmax_615F909D_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -8877,10 +4183,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_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/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 = "-ObjC++ -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_profiler_resource_util_35C39BA3_ios_min15.5; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_transpose_conv_bias_E3459F40_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -8889,11 +4195,12 @@ C1A2A581215C43D600000020 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gpu_buffer_storage_gpu_buffer_format_06E221FF_ios_min15.5; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_detection_projection_calculator_6C26583E_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -8902,11 +4209,12 @@ C1A2A581215C43D600000021 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/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_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_0402C5B7_ios_min15.5; + PRODUCT_NAME = _idx_detection_projection_calculator_6C26583E_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -8916,10 +4224,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_MPPMetalHelper_D24F76A1_ios_min11.0; + PRODUCT_NAME = _idx_end_loop_calculator_AADF2B85_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -8929,10 +4237,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_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; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_mediapipe_framework_ios_C158E828_ios_min11.0; + PRODUCT_NAME = _idx_end_loop_calculator_AADF2B85_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -8942,10 +4250,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_MPPMetalHelper_D24F76A1_ios_min15.5; + PRODUCT_NAME = _idx_mediapipe_framework_ios_C158E828_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -8965,828 +4273,6 @@ name = Release; }; C1A2A581215C43D600000026 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_MPPMetalUtil_455751A0_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000027 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_MPPMetalUtil_455751A0_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000028 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000029 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = "_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min11.0"; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D60000002A /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_math_68C63536_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D60000002B /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_olamodule_common_library_63E72567_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D60000002C /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D60000002D /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_image_properties_calculator_gpu_service_56DC0B61_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D60000002E /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-ObjC++ -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_scheduler_queue_364511B6_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D60000002F /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000030 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = "_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min15.5"; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000031 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_math_68C63536_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000032 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_olamodule_common_library_63E72567_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000033 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000034 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-ObjC++ -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_scheduler_queue_364511B6_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000035 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_image_properties_calculator_gpu_service_56DC0B61_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000036 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_annotation_overlay_calculator_D98E9275_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000037 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gl_calculator_helper_DC51F13C_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000038 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_shader_util_C047EBB4_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000039 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gl_simple_shaders_CB7AD146_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D60000003A /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_annotation_renderer_8D68840D_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D60000003B /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_location_image_frame_opencv_D6F50F87_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D60000003C /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_annotation_overlay_calculator_D98E9275_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D60000003D /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_annotation_renderer_8D68840D_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D60000003E /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_location_image_frame_opencv_D6F50F87_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D60000003F /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gl_calculator_helper_DC51F13C_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000040 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_shader_util_C047EBB4_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000041 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gl_simple_shaders_CB7AD146_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000042 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_begin_loop_calculator_50B5F6A2_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000043 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_matrix_E57ACF41_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000044 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_begin_loop_calculator_50B5F6A2_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000045 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_matrix_E57ACF41_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000046 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_clip_vector_size_calculator_C1D859C1_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000047 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_clip_vector_size_calculator_C1D859C1_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000048 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_cpu_op_resolver_519CBACD_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000049 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D60000004A /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_max_unpooling_max_pool_argmax_615F909D_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D60000004B /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_transpose_conv_bias_E3459F40_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D60000004C /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_cpu_op_resolver_519CBACD_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D60000004D /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D60000004E /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_max_unpooling_max_pool_argmax_615F909D_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D60000004F /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_transpose_conv_bias_E3459F40_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000050 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_detection_projection_calculator_6C26583E_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000051 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_detection_projection_calculator_6C26583E_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000052 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_image_opencv_9E4E8A87_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000053 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_image_opencv_9E4E8A87_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000054 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_image_to_tensor_calculator_FF109E68_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000055 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_tensor_7303F5EA_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000056 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_image_to_tensor_converter_opencv_22266321_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000057 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_image_to_tensor_calculator_FF109E68_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000058 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_tensor_7303F5EA_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000059 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_image_to_tensor_converter_opencv_22266321_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D60000005A /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_image_to_tensor_converter_metal_4060E9DC_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D60000005B /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_image_to_tensor_converter_metal_4060E9DC_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D60000005C /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_inference_calculator_interface_inference_calculator_cpu_EC7FC897_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D60000005D /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_tflite_model_loader_254BEB33_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D60000005E /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-ObjC++ -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_resource_util_C5C5DB93_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D60000005F /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_inference_calculator_interface_inference_calculator_cpu_EC7FC897_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000060 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_tflite_model_loader_254BEB33_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000061 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-ObjC++ -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_resource_util_C5C5DB93_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000062 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_inference_calculator_metal_9450E505_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000063 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_inference_calculator_metal_9450E505_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000064 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -9800,7 +4286,7 @@ }; name = Release; }; - C1A2A581215C43D600000065 /* Release */ = { + C1A2A581215C43D600000027 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -9814,7 +4300,7 @@ }; name = Release; }; - C1A2A581215C43D600000066 /* Release */ = { + C1A2A581215C43D600000028 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -9827,7 +4313,7 @@ }; name = Release; }; - C1A2A581215C43D600000067 /* Release */ = { + C1A2A581215C43D600000029 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -9840,7 +4326,85 @@ }; name = Release; }; - C1A2A581215C43D600000068 /* Release */ = { + C1A2A581215C43D60000002A /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_previous_loopback_calculator_header_util_D60754F6_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D60000002B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_previous_loopback_calculator_header_util_D60754F6_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D60000002C /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_rectangle_util_BC608102_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D60000002D /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_rectangle_util_BC608102_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D60000002E /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-ObjC++ -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_resource_util_C5C5DB93_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D60000002F /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-ObjC++ -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_resource_util_C5C5DB93_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D600000030 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -9853,7 +4417,7 @@ }; name = Release; }; - C1A2A581215C43D600000069 /* Release */ = { + C1A2A581215C43D600000031 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -9866,139 +4430,59 @@ }; name = Release; }; - C1A2A581215C43D60000006A /* Release */ = { + C1A2A581215C43D600000032 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_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 = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_tensors_to_detections_calculator_39B944A4_ios_min11.0; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tflite_model_loader_254BEB33_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D60000006B /* Release */ = { + C1A2A581215C43D600000033 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_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 = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_tensors_to_detections_calculator_39B944A4_ios_min15.5; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tflite_model_loader_254BEB33_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D60000006C /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_717D4ABA_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D60000006D /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_717D4ABA_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D60000006E /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_tflite_custom_op_resolver_calculator_772D286F_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D60000006F /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_tflite_custom_op_resolver_calculator_772D286F_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000070 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_tflite_model_calculator_end_loop_calculator_38D3CDB2_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000071 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_tflite_model_calculator_end_loop_calculator_38D3CDB2_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000072 /* Release */ = { + C1A2A581215C43D600000034 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_87112A87_ios_min11.0; + PRODUCT_NAME = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D600000073 /* Release */ = { + C1A2A581215C43D600000035 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_87112A87_ios_min15.5; + PRODUCT_NAME = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D600000074 /* Release */ = { + C1A2A581215C43D600000036 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = "Stub Launch Image"; @@ -10006,7 +4490,7 @@ DEBUG_INFORMATION_FORMAT = dwarf; GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; INFOPLIST_FILE = "${PROJECT_FILE_PATH}/.tulsi/Resources/StubInfoPlist.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; PRODUCT_NAME = "mediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary"; SDKROOT = iphoneos; TULSI_BUILD_PATH = mediapipe/render/module/beauty/ios/framework; @@ -10093,7 +4577,7 @@ GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = ""; INFOPLIST_FILE = "${PROJECT_FILE_PATH}/.tulsi/Resources/StubInfoPlist.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "--version"; OTHER_LDFLAGS = "--version"; @@ -10110,135 +4594,7 @@ /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ - 84EFF50804A631DD00000000 /* Build configuration list for PBXNativeTarget "_idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000014 /* Debug */, - C1A2A581215C43D600000014 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5080908381B00000000 /* Build configuration list for PBXNativeTarget "_idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000004 /* Debug */, - C1A2A581215C43D600000004 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5080D167B7100000000 /* Build configuration list for PBXNativeTarget "_idx_profiler_resource_util_35C39BA3_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB0000001F /* Debug */, - C1A2A581215C43D60000001F /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5080DDBE57E00000000 /* Build configuration list for PBXNativeTarget "_idx_pixel_buffer_pool_util_F1B36E38_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB0000001C /* Debug */, - C1A2A581215C43D60000001C /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; 84EFF5080E206A9F00000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_overlay_calculator_D98E9275_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000036 /* Debug */, - C1A2A581215C43D600000036 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5080F04FD2900000000 /* Build configuration list for PBXNativeTarget "_idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB0000002C /* Debug */, - C1A2A581215C43D60000002C /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508101D379700000000 /* Build configuration list for PBXNativeTarget "_idx_detection_projection_calculator_6C26583E_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000051 /* Debug */, - C1A2A581215C43D600000051 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF50812D5985D00000000 /* Build configuration list for PBXNativeTarget "_idx_matrix_E57ACF41_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000045 /* Debug */, - C1A2A581215C43D600000045 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508136ED85B00000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_custom_op_resolver_calculator_772D286F_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB0000006F /* Debug */, - C1A2A581215C43D60000006F /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5081610E78100000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_op_resolver_519CBACD_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB0000004C /* Debug */, - C1A2A581215C43D60000004C /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508161F1A1D00000000 /* Build configuration list for PBXNativeTarget "_idx_mediapipe_framework_ios_C158E828_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000023 /* Debug */, - C1A2A581215C43D600000023 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508192F9DD000000000 /* Build configuration list for PBXNativeTarget "_idx_op_resolver_0836C983_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000067 /* Debug */, - C1A2A581215C43D600000067 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5081B3AF97B00000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_metal_9450E505_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000063 /* Debug */, - C1A2A581215C43D600000063 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5081CDA19BF00000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_calculator_FF109E68_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000057 /* Debug */, - C1A2A581215C43D600000057 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5081D89926500000000 /* Build configuration list for PBXNativeTarget "_idx_image_gl_context_gpu_buffer_multi_pool_99A08626_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000003 /* Debug */, - C1A2A581215C43D600000003 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5081DAB3B6400000000 /* Build configuration list for PBXNativeTarget "_idx_profiler_resource_util_35C39BA3_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB0000000F /* Debug */, - C1A2A581215C43D60000000F /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5081FB54A7400000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_gpu_buffer_format_06E221FF_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( C1A2A5811882E1BB00000010 /* Debug */, @@ -10246,35 +4602,67 @@ ); defaultConfigurationIsVisible = 0; }; + 84EFF508101D379700000000 /* Build configuration list for PBXNativeTarget "_idx_detection_projection_calculator_6C26583E_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB00000021 /* Debug */, + C1A2A581215C43D600000021 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF5081610E78100000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_op_resolver_519CBACD_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB0000001C /* Debug */, + C1A2A581215C43D60000001C /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF508161F1A1D00000000 /* Build configuration list for PBXNativeTarget "_idx_mediapipe_framework_ios_C158E828_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB00000024 /* Debug */, + C1A2A581215C43D600000024 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF508192F9DD000000000 /* Build configuration list for PBXNativeTarget "_idx_op_resolver_0836C983_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB00000029 /* Debug */, + C1A2A581215C43D600000029 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF5081ECDCC5600000000 /* Build configuration list for PBXNativeTarget "_idx_util_C76AD427_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB0000000E /* Debug */, + C1A2A581215C43D60000000E /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; 84EFF5082219CAC000000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_op_resolver_519CBACD_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000048 /* Debug */, - C1A2A581215C43D600000048 /* Release */, + C1A2A5811882E1BB00000018 /* Debug */, + C1A2A581215C43D600000018 /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF508278B98D900000000 /* Build configuration list for PBXNativeTarget "_idx_clip_vector_size_calculator_C1D859C1_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000047 /* Debug */, - C1A2A581215C43D600000047 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5082CF4B73A00000000 /* Build configuration list for PBXNativeTarget "_idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000015 /* Debug */, - C1A2A581215C43D600000015 /* Release */, + C1A2A5811882E1BB00000017 /* Debug */, + C1A2A581215C43D600000017 /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF5082E8F9F1400000000 /* Build configuration list for PBXNativeTarget "_idx_op_resolver_0836C983_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000066 /* Debug */, - C1A2A581215C43D600000066 /* Release */, + C1A2A5811882E1BB00000028 /* Debug */, + C1A2A581215C43D600000028 /* Release */, ); defaultConfigurationIsVisible = 0; }; @@ -10291,136 +4679,88 @@ 84EFF508363B547A00000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_overlay_calculator_D98E9275_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000003C /* Debug */, - C1A2A581215C43D60000003C /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF50837CF1CB300000000 /* Build configuration list for PBXNativeTarget "_idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000005 /* Debug */, - C1A2A581215C43D600000005 /* Release */, + C1A2A5811882E1BB00000012 /* Debug */, + C1A2A581215C43D600000012 /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF5083836504100000000 /* Build configuration list for PBXNativeTarget "_idx_begin_loop_calculator_50B5F6A2_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000042 /* Debug */, - C1A2A581215C43D600000042 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5083BDB1A3300000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_0402C5B7_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000011 /* Debug */, - C1A2A581215C43D600000011 /* Release */, + C1A2A5811882E1BB00000014 /* Debug */, + C1A2A581215C43D600000014 /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF5083C476C6A00000000 /* Build configuration list for PBXNativeTarget "_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000004D /* Debug */, - C1A2A581215C43D60000004D /* Release */, + C1A2A5811882E1BB0000001D /* Debug */, + C1A2A581215C43D60000001D /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF5083E77579C00000000 /* Build configuration list for PBXNativeTarget "_idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB0000000B /* Debug */, + C1A2A581215C43D60000000B /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF50840029B2B00000000 /* Build configuration list for PBXNativeTarget "_idx_non_max_suppression_calculator_E13679C5_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000064 /* Debug */, - C1A2A581215C43D600000064 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF50841AF058700000000 /* Build configuration list for PBXNativeTarget "_idx_matrix_E57ACF41_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000043 /* Debug */, - C1A2A581215C43D600000043 /* Release */, + C1A2A5811882E1BB00000026 /* Debug */, + C1A2A581215C43D600000026 /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF50841B6A51B00000000 /* Build configuration list for PBXNativeTarget "_idx_resource_util_C5C5DB93_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000005E /* Debug */, - C1A2A581215C43D60000005E /* Release */, + C1A2A5811882E1BB0000002E /* Debug */, + C1A2A581215C43D60000002E /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF50845659DC900000000 /* Build configuration list for PBXNativeTarget "_idx_transpose_conv_bias_E3459F40_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000004B /* Debug */, - C1A2A581215C43D60000004B /* Release */, + C1A2A5811882E1BB0000001A /* Debug */, + C1A2A581215C43D60000001A /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF508474F353600000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_loader_254BEB33_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000005D /* Debug */, - C1A2A581215C43D60000005D /* Release */, + C1A2A5811882E1BB00000032 /* Debug */, + C1A2A581215C43D600000032 /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF5084920A84900000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_loader_254BEB33_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000060 /* Debug */, - C1A2A581215C43D600000060 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5084B7E0ABB00000000 /* Build configuration list for PBXNativeTarget "_idx_image_opencv_9E4E8A87_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000053 /* Debug */, - C1A2A581215C43D600000053 /* Release */, + C1A2A5811882E1BB00000033 /* Debug */, + C1A2A581215C43D600000033 /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF5084BCDEF5000000000 /* Build configuration list for PBXNativeTarget "_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000049 /* Debug */, - C1A2A581215C43D600000049 /* Release */, + C1A2A5811882E1BB00000019 /* Debug */, + C1A2A581215C43D600000019 /* Release */, ); defaultConfigurationIsVisible = 0; }; - 84EFF5084BDA704A00000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_metal_4060E9DC_ios_min15.5" */ = { + 84EFF5084E3B400600000000 /* Build configuration list for PBXNativeTarget "_idx_previous_loopback_calculator_header_util_D60754F6_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000005B /* Debug */, - C1A2A581215C43D60000005B /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5084D89B18800000000 /* Build configuration list for PBXNativeTarget "_idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000018 /* Debug */, - C1A2A581215C43D600000018 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5084D92825300000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_custom_op_resolver_calculator_772D286F_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB0000006E /* Debug */, - C1A2A581215C43D60000006E /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5084E652AAB00000000 /* Build configuration list for PBXNativeTarget "_idx_pixel_buffer_pool_util_F1B36E38_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB0000000C /* Debug */, - C1A2A581215C43D60000000C /* Release */, + C1A2A5811882E1BB0000002A /* Debug */, + C1A2A581215C43D60000002A /* Release */, ); defaultConfigurationIsVisible = 0; }; @@ -10432,217 +4772,73 @@ ); defaultConfigurationIsVisible = 0; }; - 84EFF508509C6EAD00000000 /* Build configuration list for PBXNativeTarget "_idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min11.0" */ = { + 84EFF50858263CF500000000 /* Build configuration list for PBXNativeTarget "_idx_end_loop_calculator_AADF2B85_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000000D /* Debug */, - C1A2A581215C43D60000000D /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF50852D61F6100000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_opencv_22266321_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000059 /* Debug */, - C1A2A581215C43D600000059 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5085B94398200000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalHelper_D24F76A1_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000022 /* Debug */, - C1A2A581215C43D600000022 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5085C39F12800000000 /* Build configuration list for PBXNativeTarget "_idx_gl_simple_shaders_CB7AD146_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000041 /* Debug */, - C1A2A581215C43D600000041 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5085CC6057F00000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_717D4ABA_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB0000006C /* Debug */, - C1A2A581215C43D60000006C /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5085E3AF8BB00000000 /* Build configuration list for PBXNativeTarget "_idx_image_frame_graph_tracer_4E004B23_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB0000001A /* Debug */, - C1A2A581215C43D60000001A /* Release */, + C1A2A5811882E1BB00000023 /* Debug */, + C1A2A581215C43D600000023 /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF5085EB9C91B00000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_renderer_8D68840D_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000003A /* Debug */, - C1A2A581215C43D60000003A /* Release */, + C1A2A5811882E1BB00000011 /* Debug */, + C1A2A581215C43D600000011 /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF5085EC1FB9F00000000 /* Build configuration list for PBXNativeTarget "mediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000074 /* Debug */, - C1A2A581215C43D600000074 /* Release */, + C1A2A5811882E1BB00000036 /* Debug */, + C1A2A581215C43D600000036 /* Release */, C1A2A581A47D8D4000000002 /* __TulsiTestRunner_Debug */, C1A2A58115BEFE3900000002 /* __TulsiTestRunner_Release */, ); defaultConfigurationIsVisible = 0; }; - 84EFF5085F91827A00000000 /* Build configuration list for PBXNativeTarget "_idx_image_gl_context_gpu_buffer_multi_pool_99A08626_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB0000001B /* Debug */, - C1A2A581215C43D60000001B /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5086042AB7700000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_interface_inference_calculator_cpu_EC7FC897_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB0000005F /* Debug */, - C1A2A581215C43D60000005F /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508626F7F6F00000000 /* Build configuration list for PBXNativeTarget "_idx_image_frame_graph_tracer_4E004B23_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB0000000B /* Debug */, - C1A2A581215C43D60000000B /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5086673135900000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_0402C5B7_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000021 /* Debug */, - C1A2A581215C43D600000021 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF50866DCA2CC00000000 /* Build configuration list for PBXNativeTarget "_idx_MPPGraphGPUData_39C9C70C_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000002 /* Debug */, - C1A2A581215C43D600000002 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF50867D1B86E00000000 /* Build configuration list for PBXNativeTarget "_idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000017 /* Debug */, - C1A2A581215C43D600000017 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF50867F6D39600000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_metal_9450E505_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000062 /* Debug */, - C1A2A581215C43D600000062 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; 84EFF5086D9F13EB00000000 /* Build configuration list for PBXNativeTarget "_idx_non_max_suppression_calculator_E13679C5_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000065 /* Debug */, - C1A2A581215C43D600000065 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5086FD1C2A400000000 /* Build configuration list for PBXNativeTarget "_idx_location_image_frame_opencv_D6F50F87_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB0000003E /* Debug */, - C1A2A581215C43D60000003E /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF50871BCBA0600000000 /* Build configuration list for PBXNativeTarget "_idx_image_opencv_9E4E8A87_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000052 /* Debug */, - C1A2A581215C43D600000052 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508734E4FE900000000 /* Build configuration list for PBXNativeTarget "_idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB0000001E /* Debug */, - C1A2A581215C43D60000001E /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508735E8FC000000000 /* Build configuration list for PBXNativeTarget "_idx_scheduler_queue_364511B6_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB0000002E /* Debug */, - C1A2A581215C43D60000002E /* Release */, + C1A2A5811882E1BB00000027 /* Debug */, + C1A2A581215C43D600000027 /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF508778FF48400000000 /* Build configuration list for PBXNativeTarget "_idx_olamodule_common_library_63E72567_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000002B /* Debug */, - C1A2A581215C43D60000002B /* Release */, + C1A2A5811882E1BB00000003 /* Debug */, + C1A2A581215C43D600000003 /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF50879B1A83300000000 /* Build configuration list for PBXNativeTarget "_idx_resource_util_C5C5DB93_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000061 /* Debug */, - C1A2A581215C43D600000061 /* Release */, + C1A2A5811882E1BB0000002F /* Debug */, + C1A2A581215C43D60000002F /* Release */, ); defaultConfigurationIsVisible = 0; }; - 84EFF5087AB0E97E00000000 /* Build configuration list for PBXNativeTarget "_idx_gl_calculator_helper_DC51F13C_ios_min15.5" */ = { + 84EFF5087A1991E800000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_util_C9677097_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000003F /* Debug */, - C1A2A581215C43D60000003F /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF50882F3329000000000 /* Build configuration list for PBXNativeTarget "_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_87112A87_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000073 /* Debug */, - C1A2A581215C43D600000073 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF50883769D1F00000000 /* Build configuration list for PBXNativeTarget "_idx_gl_simple_shaders_CB7AD146_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000039 /* Debug */, - C1A2A581215C43D600000039 /* Release */, + C1A2A5811882E1BB00000004 /* Debug */, + C1A2A581215C43D600000004 /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF50883A4D2C400000000 /* Build configuration list for PBXNativeTarget "_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000030 /* Debug */, - C1A2A581215C43D600000030 /* Release */, + C1A2A5811882E1BB0000000A /* Debug */, + C1A2A581215C43D60000000A /* Release */, ); defaultConfigurationIsVisible = 0; }; - 84EFF50883C6DEA900000000 /* Build configuration list for PBXNativeTarget "_idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min11.0" */ = { + 84EFF5088CB48DB200000000 /* Build configuration list for PBXNativeTarget "_idx_math_68C63536_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( C1A2A5811882E1BB00000008 /* Debug */, @@ -10650,111 +4846,31 @@ ); defaultConfigurationIsVisible = 0; }; - 84EFF50889D7C38200000000 /* Build configuration list for PBXNativeTarget "_idx_tensor_7303F5EA_ios_min15.5" */ = { + 84EFF5088D5B68D300000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_util_C9677097_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000058 /* Debug */, - C1A2A581215C43D600000058 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5088CB48DB200000000 /* Build configuration list for PBXNativeTarget "_idx_math_68C63536_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB0000002A /* Debug */, - C1A2A581215C43D60000002A /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5088CF1146C00000000 /* Build configuration list for PBXNativeTarget "_idx_file_path_E61EA0A1_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000019 /* Debug */, - C1A2A581215C43D600000019 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5088E413F3200000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_gpu_buffer_format_06E221FF_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000020 /* Debug */, - C1A2A581215C43D600000020 /* Release */, + C1A2A5811882E1BB0000000F /* Debug */, + C1A2A581215C43D60000000F /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF5089042845D00000000 /* Build configuration list for PBXNativeTarget "_idx_split_vector_calculator_ED1EBC41_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000069 /* Debug */, - C1A2A581215C43D600000069 /* Release */, + C1A2A5811882E1BB00000031 /* Debug */, + C1A2A581215C43D600000031 /* Release */, ); defaultConfigurationIsVisible = 0; }; - 84EFF5089778129500000000 /* Build configuration list for PBXNativeTarget "_idx_gl_calculator_helper_DC51F13C_ios_min11.0" */ = { + 84EFF5089320C55E00000000 /* Build configuration list for PBXNativeTarget "_idx_previous_loopback_calculator_header_util_D60754F6_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000037 /* Debug */, - C1A2A581215C43D600000037 /* Release */, + C1A2A5811882E1BB0000002B /* Debug */, + C1A2A581215C43D60000002B /* Release */, ); defaultConfigurationIsVisible = 0; }; - 84EFF508981699FA00000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_detections_calculator_39B944A4_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB0000006A /* Debug */, - C1A2A581215C43D60000006A /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5089A5E8EAF00000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_717D4ABA_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB0000006D /* Debug */, - C1A2A581215C43D60000006D /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5089DA663AF00000000 /* Build configuration list for PBXNativeTarget "_idx_shader_util_C047EBB4_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000038 /* Debug */, - C1A2A581215C43D600000038 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5089E75048B00000000 /* Build configuration list for PBXNativeTarget "_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000028 /* Debug */, - C1A2A581215C43D600000028 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5089F87702200000000 /* Build configuration list for PBXNativeTarget "_idx_shader_util_C047EBB4_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000040 /* Debug */, - C1A2A581215C43D600000040 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508A3588D7D00000000 /* Build configuration list for PBXNativeTarget "_idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000007 /* Debug */, - C1A2A581215C43D600000007 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508A58E44BE00000000 /* Build configuration list for PBXNativeTarget "_idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000013 /* Debug */, - C1A2A581215C43D600000013 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508A90E0DE000000000 /* Build configuration list for PBXNativeTarget "_idx_scheduler_queue_364511B6_ios_min15.5" */ = { + 84EFF508992D751100000000 /* Build configuration list for PBXNativeTarget "_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( C1A2A5811882E1BB00000034 /* Debug */, @@ -10762,59 +4878,35 @@ ); defaultConfigurationIsVisible = 0; }; - 84EFF508A9596AF100000000 /* Build configuration list for PBXNativeTarget "_idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min15.5" */ = { + 84EFF5089E75048B00000000 /* Build configuration list for PBXNativeTarget "_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000001D /* Debug */, - C1A2A581215C43D60000001D /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508AB21E79200000000 /* Build configuration list for PBXNativeTarget "_idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000006 /* Debug */, - C1A2A581215C43D600000006 /* Release */, + C1A2A5811882E1BB00000002 /* Debug */, + C1A2A581215C43D600000002 /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF508AB7A688600000000 /* Build configuration list for PBXNativeTarget "_idx_max_unpooling_max_pool_argmax_615F909D_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000004A /* Debug */, - C1A2A581215C43D60000004A /* Release */, + C1A2A5811882E1BB0000001B /* Debug */, + C1A2A581215C43D60000001B /* Release */, ); defaultConfigurationIsVisible = 0; }; - 84EFF508ADC0634800000000 /* Build configuration list for PBXNativeTarget "_idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min15.5" */ = { + 84EFF508B2B858A400000000 /* Build configuration list for PBXNativeTarget "_idx_rectangle_util_BC608102_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000016 /* Debug */, - C1A2A581215C43D600000016 /* Release */, + C1A2A5811882E1BB0000002C /* Debug */, + C1A2A581215C43D60000002C /* Release */, ); defaultConfigurationIsVisible = 0; }; - 84EFF508B2EE11E100000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalUtil_455751A0_ios_min11.0" */ = { + 84EFF508B410383C00000000 /* Build configuration list for PBXNativeTarget "_idx_rectangle_util_BC608102_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000026 /* Debug */, - C1A2A581215C43D600000026 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508B71D3E1900000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_interface_inference_calculator_cpu_EC7FC897_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB0000005C /* Debug */, - C1A2A581215C43D60000005C /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508B760D34B00000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalHelper_D24F76A1_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000024 /* Debug */, - C1A2A581215C43D600000024 /* Release */, + C1A2A5811882E1BB0000002D /* Debug */, + C1A2A581215C43D60000002D /* Release */, ); defaultConfigurationIsVisible = 0; }; @@ -10827,24 +4919,16 @@ 84EFF508BBC89BEB00000000 /* Build configuration list for PBXNativeTarget "_idx_split_vector_calculator_ED1EBC41_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000068 /* Debug */, - C1A2A581215C43D600000068 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508BE819FF200000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalUtil_455751A0_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000027 /* Debug */, - C1A2A581215C43D600000027 /* Release */, + C1A2A5811882E1BB00000030 /* Debug */, + C1A2A581215C43D600000030 /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF508C3B5CF4100000000 /* Build configuration list for PBXNativeTarget "_idx_olamodule_common_library_63E72567_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000032 /* Debug */, - C1A2A581215C43D600000032 /* Release */, + C1A2A5811882E1BB0000000D /* Debug */, + C1A2A581215C43D60000000D /* Release */, ); defaultConfigurationIsVisible = 0; }; @@ -10858,47 +4942,23 @@ ); defaultConfigurationIsVisible = 0; }; - 84EFF508CA95FAFE00000000 /* Build configuration list for PBXNativeTarget "_idx_tensor_7303F5EA_ios_min11.0" */ = { + 84EFF508CC419B8300000000 /* Build configuration list for PBXNativeTarget "_idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000055 /* Debug */, - C1A2A581215C43D600000055 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508CF55CF1A00000000 /* Build configuration list for PBXNativeTarget "_idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000033 /* Debug */, - C1A2A581215C43D600000033 /* Release */, + C1A2A5811882E1BB00000007 /* Debug */, + C1A2A581215C43D600000007 /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF508D1B8279900000000 /* Build configuration list for PBXNativeTarget "_idx_clip_vector_size_calculator_C1D859C1_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000046 /* Debug */, - C1A2A581215C43D600000046 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508D42124C800000000 /* Build configuration list for PBXNativeTarget "_idx_image_properties_calculator_gpu_service_56DC0B61_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB0000002D /* Debug */, - C1A2A581215C43D60000002D /* Release */, + C1A2A5811882E1BB00000016 /* Debug */, + C1A2A581215C43D600000016 /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF508D5523A7B00000000 /* Build configuration list for PBXNativeTarget "_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB0000002F /* Debug */, - C1A2A581215C43D60000002F /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508D5E19DD800000000 /* Build configuration list for PBXNativeTarget "_idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( C1A2A5811882E1BB00000009 /* Debug */, @@ -10909,52 +4969,68 @@ 84EFF508D7525C8000000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_renderer_8D68840D_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000003D /* Debug */, - C1A2A581215C43D60000003D /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508D94DA60100000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_detections_calculator_39B944A4_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB0000006B /* Debug */, - C1A2A581215C43D60000006B /* Release */, + C1A2A5811882E1BB00000013 /* Debug */, + C1A2A581215C43D600000013 /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF508DB4002F000000000 /* Build configuration list for PBXNativeTarget "_idx_transpose_conv_bias_E3459F40_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000004F /* Debug */, - C1A2A581215C43D60000004F /* Release */, + C1A2A5811882E1BB0000001F /* Debug */, + C1A2A581215C43D60000001F /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF508DB52C34B00000000 /* Build configuration list for PBXNativeTarget "_idx_detection_projection_calculator_6C26583E_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000050 /* Debug */, - C1A2A581215C43D600000050 /* Release */, + C1A2A5811882E1BB00000020 /* Debug */, + C1A2A581215C43D600000020 /* Release */, ); defaultConfigurationIsVisible = 0; }; - 84EFF508DB9B2BF000000000 /* Build configuration list for PBXNativeTarget "_idx_file_path_E61EA0A1_ios_min11.0" */ = { + 84EFF508E48C078C00000000 /* Build configuration list for PBXNativeTarget "_idx_begin_loop_calculator_50B5F6A2_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000000A /* Debug */, - C1A2A581215C43D60000000A /* Release */, + C1A2A5811882E1BB00000015 /* Debug */, + C1A2A581215C43D600000015 /* Release */, ); defaultConfigurationIsVisible = 0; }; - 84EFF508DBA80DDD00000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_calculator_end_loop_calculator_38D3CDB2_ios_min11.0" */ = { + 84EFF508E81BE51800000000 /* Build configuration list for PBXNativeTarget "_idx_math_68C63536_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000070 /* Debug */, - C1A2A581215C43D600000070 /* Release */, + C1A2A5811882E1BB0000000C /* Debug */, + C1A2A581215C43D60000000C /* Release */, ); defaultConfigurationIsVisible = 0; }; - 84EFF508DBB67FD700000000 /* Build configuration list for PBXNativeTarget "_idx_image_properties_calculator_gpu_service_56DC0B61_ios_min15.5" */ = { + 84EFF508EA09B22F00000000 /* Build configuration list for PBXNativeTarget "_idx_util_C76AD427_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB00000005 /* Debug */, + C1A2A581215C43D600000005 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF508F0D7FBAC00000000 /* Build configuration list for PBXNativeTarget "_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB00000006 /* Debug */, + C1A2A581215C43D600000006 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF508F742852500000000 /* Build configuration list for PBXNativeTarget "_idx_max_unpooling_max_pool_argmax_615F909D_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB0000001E /* Debug */, + C1A2A581215C43D60000001E /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF508F78E615300000000 /* Build configuration list for PBXNativeTarget "_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( C1A2A5811882E1BB00000035 /* Debug */, @@ -10962,99 +5038,11 @@ ); defaultConfigurationIsVisible = 0; }; - 84EFF508DC4A836900000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_opencv_22266321_ios_min11.0" */ = { + 84EFF508F7A3D4A500000000 /* Build configuration list for PBXNativeTarget "_idx_end_loop_calculator_AADF2B85_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000056 /* Debug */, - C1A2A581215C43D600000056 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508DC607B3500000000 /* Build configuration list for PBXNativeTarget "_idx_MPPGraphGPUData_39C9C70C_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000012 /* Debug */, - C1A2A581215C43D600000012 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508DF63089600000000 /* Build configuration list for PBXNativeTarget "_idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB0000000E /* Debug */, - C1A2A581215C43D60000000E /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508E0B95D0800000000 /* Build configuration list for PBXNativeTarget "_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_87112A87_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000072 /* Debug */, - C1A2A581215C43D600000072 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508E0BB30A300000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_calculator_FF109E68_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000054 /* Debug */, - C1A2A581215C43D600000054 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508E48C078C00000000 /* Build configuration list for PBXNativeTarget "_idx_begin_loop_calculator_50B5F6A2_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000044 /* Debug */, - C1A2A581215C43D600000044 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508E81BE51800000000 /* Build configuration list for PBXNativeTarget "_idx_math_68C63536_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000031 /* Debug */, - C1A2A581215C43D600000031 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508EE0A722C00000000 /* Build configuration list for PBXNativeTarget "_idx_location_image_frame_opencv_D6F50F87_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB0000003B /* Debug */, - C1A2A581215C43D60000003B /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508F0D7FBAC00000000 /* Build configuration list for PBXNativeTarget "_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000029 /* Debug */, - C1A2A581215C43D600000029 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508F742852500000000 /* Build configuration list for PBXNativeTarget "_idx_max_unpooling_max_pool_argmax_615F909D_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB0000004E /* Debug */, - C1A2A581215C43D60000004E /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508FA3A52CA00000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_metal_4060E9DC_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB0000005A /* Debug */, - C1A2A581215C43D60000005A /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508FD0C7ADF00000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_calculator_end_loop_calculator_38D3CDB2_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000071 /* Debug */, - C1A2A581215C43D600000071 /* Release */, + C1A2A5811882E1BB00000022 /* Debug */, + C1A2A581215C43D600000022 /* Release */, ); defaultConfigurationIsVisible = 0; }; diff --git a/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/xcshareddata/xcschemes/OlaFaceUnityFramework.xcscheme b/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/xcshareddata/xcschemes/OlaFaceUnityFramework.xcscheme index 1a707e650..b85a1dae6 100644 --- a/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/xcshareddata/xcschemes/OlaFaceUnityFramework.xcscheme +++ b/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/xcshareddata/xcschemes/OlaFaceUnityFramework.xcscheme @@ -1,29 +1,29 @@ - - + + - - + + - + - + - + - + - + - + - + \ No newline at end of file diff --git a/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/xcshareddata/xcschemes/_idx_Scheme.xcscheme b/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/xcshareddata/xcschemes/_idx_Scheme.xcscheme index 0152d08aa..1a75d661d 100644 --- a/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/xcshareddata/xcschemes/_idx_Scheme.xcscheme +++ b/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/xcshareddata/xcschemes/_idx_Scheme.xcscheme @@ -1,1108 +1,370 @@ - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - - + + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - + - + - - + + - - + + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - + - + - - + + - - + + - - + + - - + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + \ No newline at end of file diff --git a/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/xcshareddata/xcschemes/mediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary.xcscheme b/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/xcshareddata/xcschemes/mediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary.xcscheme index 58751938b..1cb9e4ba7 100644 --- a/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/xcshareddata/xcschemes/mediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary.xcscheme +++ b/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/xcshareddata/xcschemes/mediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary.xcscheme @@ -2,28 +2,28 @@ - - + + - + - + - + - + - + - + - + \ No newline at end of file diff --git a/mediapipe/render/module/beauty/ios/framework/OlaFaceUnity.mm b/mediapipe/render/module/beauty/ios/framework/OlaFaceUnity.mm index f7d5a6300..f186e0989 100644 --- a/mediapipe/render/module/beauty/ios/framework/OlaFaceUnity.mm +++ b/mediapipe/render/module/beauty/ios/framework/OlaFaceUnity.mm @@ -30,7 +30,7 @@ { _face_module = Opipe::FaceMeshModule::create(); NSBundle *bundle = [NSBundle bundleForClass:[self class]]; - NSURL* graphURL = [bundle URLForResource:@"face_mesh_mobile_gpu" withExtension:@"binarypb"]; + NSURL* graphURL = [bundle URLForResource:@"face_mesh_mobile_landmark_gpu" withExtension:@"binarypb"]; NSData* data = [NSData dataWithContentsOfURL:graphURL options:0 error:nil]; if (data) { _face_module->init(nullptr, (void *)data.bytes, data.length); diff --git a/mediapipe/render/module/beauty/whiten.png b/mediapipe/render/module/beauty/whiten.png old mode 100644 new mode 100755 index cc70b37ca..cd8c9b9a4 Binary files a/mediapipe/render/module/beauty/whiten.png and b/mediapipe/render/module/beauty/whiten.png differ diff --git a/mediapipe/render/module/common/ola_graph.cc b/mediapipe/render/module/common/ola_graph.cc index 334e1743b..9455fb53f 100644 --- a/mediapipe/render/module/common/ola_graph.cc +++ b/mediapipe/render/module/common/ola_graph.cc @@ -40,10 +40,10 @@ namespace Opipe pixelBuffer = mediapipe::GetCVPixelBufferRef(packet.Get()); else pixelBuffer = packet.Get().GetCVPixelBufferRef(); - + graph->_delegate.lock()->outputPixelbuffer(graph, pixelBuffer, streamName, packet.Timestamp().Value()); -#endif } +#endif } @@ -120,7 +120,7 @@ namespace Opipe } } status = _graph->StartRun(_inputSidePackets, _streamHeaders); - NSLog(@"errors:%@", [NSString stringWithUTF8String:status.ToString().c_str()]); +// NSLog(@"errors:%@", [NSString stringWithUTF8String:status.ToString().c_str()]); if (!status.ok()) { return status; @@ -132,14 +132,14 @@ namespace Opipe const std::string &streamName) { absl::Status status = _graph->AddPacketToInputStream(streamName, packet); - NSLog(@"errors:%@", [NSString stringWithUTF8String:status.ToString().c_str()]); +// NSLog(@"errors:%@", [NSString stringWithUTF8String:status.ToString().c_str()]); return status.ok(); } bool OlaGraph::movePacket(mediapipe::Packet &&packet, const std::string &streamName) { absl::Status status = _graph->AddPacketToInputStream(streamName, std::move(packet)); - NSLog(@"errors:%@", [NSString stringWithUTF8String:status.ToString().c_str()]); +// NSLog(@"errors:%@", [NSString stringWithUTF8String:status.ToString().c_str()]); return status.ok(); } diff --git a/mediapipe/render/module/common/ola_graph.h b/mediapipe/render/module/common/ola_graph.h index 6e2125315..a68efe9b0 100644 --- a/mediapipe/render/module/common/ola_graph.h +++ b/mediapipe/render/module/common/ola_graph.h @@ -36,7 +36,7 @@ namespace Opipe #if defined(__APPLE__) virtual void outputPixelbuffer(OlaGraph *graph, CVPixelBufferRef pixelbuffer, const std::string &streamName, - int64_t timstamp) = 0; + int64_t timestamp) = 0; #endif @@ -169,9 +169,18 @@ namespace Opipe /// Waits for the graph to become idle. bool waitUntilIdle(); + + void setUseVideoOutput(bool useVideoOutput) { + _useVideoOutput = useVideoOutput; + } + + bool useVideoOutput() { + return _useVideoOutput; + } std::weak_ptr _delegate; std::atomic _framesInFlight = 0; + std::atomic _retryCount = 0; private: std::unique_ptr _graph; @@ -189,6 +198,7 @@ namespace Opipe int64 _frameNumber; bool _started; + bool _useVideoOutput = true; absl::Status performStart();