From a9a9cc6b47ec3906a26182b28e6234753abec846 Mon Sep 17 00:00:00 2001 From: "Wang.Renzhu" Date: Thu, 21 Jul 2022 10:45:36 +0800 Subject: [PATCH] =?UTF-8?q?alwaysLink=20=E7=BC=96=E8=AF=91=20OlaFaceUnity?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mediapipe/render/core/BUILD | 1 + mediapipe/render/core/CVFramebuffer.cpp | 2 + mediapipe/render/core/CVFramebuffer.hpp | 4 +- mediapipe/render/module/beauty/BUILD | 7 +- .../render/module/beauty/face_mesh_module.h | 2 +- .../module/beauty/face_mesh_module_imp.h | 4 + mediapipe/render/module/beauty/ios/BUILD | 3 + .../render/module/beauty/ios/OlaFaceUnity.h | 5 +- .../render/module/beauty/ios/OlaFaceUnity.mm | 8 + .../.tulsi/Scripts/bazel_build_settings.py | 88 +- .../.tulsi/Utils/lldbinit | 3 +- .../OlaFaceUnity.xcodeproj/project.pbxproj | 3258 ++++++++--------- .../xcschemes/OlaFaceUnityFramework.xcscheme | 16 +- .../xcschemes/_idx_Scheme.xcscheme | 1080 +++--- ...le-beauty-ios-OlaFaceUnityLibrary.xcscheme | 18 +- 15 files changed, 2172 insertions(+), 2327 deletions(-) diff --git a/mediapipe/render/core/BUILD b/mediapipe/render/core/BUILD index ac7d39ab2..6a0e9d48b 100644 --- a/mediapipe/render/core/BUILD +++ b/mediapipe/render/core/BUILD @@ -118,6 +118,7 @@ OLARENDER_SRCS = [ "Source.cpp", "SourceImage.cpp", "IOSTarget.cpp", + "CVFramebuffer.cpp", "SourceCamera.cpp", "TargetView.cpp", "FilterGroup.cpp", diff --git a/mediapipe/render/core/CVFramebuffer.cpp b/mediapipe/render/core/CVFramebuffer.cpp index 90b3ccd6e..253f5417c 100644 --- a/mediapipe/render/core/CVFramebuffer.cpp +++ b/mediapipe/render/core/CVFramebuffer.cpp @@ -4,6 +4,7 @@ // // Created by wangrenzhu on 2021/4/30. // +#if defined(__APPLE__) #include "CVFramebuffer.hpp" #include #include @@ -358,3 +359,4 @@ void CVFramebuffer::_bindFramebuffer() { NS_GI_END +#endif \ No newline at end of file diff --git a/mediapipe/render/core/CVFramebuffer.hpp b/mediapipe/render/core/CVFramebuffer.hpp index ee27ebcf7..69d09759b 100644 --- a/mediapipe/render/core/CVFramebuffer.hpp +++ b/mediapipe/render/core/CVFramebuffer.hpp @@ -7,7 +7,7 @@ #ifndef CVFramebuffer_hpp #define CVFramebuffer_hpp - +#if defined(__APPLE__) #include #include #include @@ -56,5 +56,5 @@ namespace Opipe { } - +#endif #endif /* CVFramebuffer_hpp */ diff --git a/mediapipe/render/module/beauty/BUILD b/mediapipe/render/module/beauty/BUILD index cffd82e8f..f654b20ef 100644 --- a/mediapipe/render/module/beauty/BUILD +++ b/mediapipe/render/module/beauty/BUILD @@ -5,7 +5,6 @@ cc_library( "face_mesh_module.cc", "face_mesh_beauty_render.cc", "face_mesh_module_imp.cc", - ], hdrs = [ "face_mesh_module.h", @@ -20,11 +19,15 @@ cc_library( visibility = ["//visibility:public"], deps = [ "//mediapipe/render/module/common:olamodule_common_library", - "//mediapipe/render/core:core", + ] + select({ "//mediapipe:ios_i386": [], "//mediapipe:ios_x86_64": [], + "//mediapipe:apple": [ + "//mediapipe/render/core:core-ios", + ], "//conditions:default": [ + # "//mediapipe/render/core:core", "//mediapipe/graphs/face_mesh:mobile_calculators", "//mediapipe/framework/formats:landmark_cc_proto", ], diff --git a/mediapipe/render/module/beauty/face_mesh_module.h b/mediapipe/render/module/beauty/face_mesh_module.h index 465025b28..eb481cb85 100644 --- a/mediapipe/render/module/beauty/face_mesh_module.h +++ b/mediapipe/render/module/beauty/face_mesh_module.h @@ -47,4 +47,4 @@ namespace Opipe int64_t timeStamp) = 0; }; } -#endif \ No newline at end of file +#endif diff --git a/mediapipe/render/module/beauty/face_mesh_module_imp.h b/mediapipe/render/module/beauty/face_mesh_module_imp.h index 8841c2819..e67853656 100644 --- a/mediapipe/render/module/beauty/face_mesh_module_imp.h +++ b/mediapipe/render/module/beauty/face_mesh_module_imp.h @@ -1,3 +1,6 @@ +#ifndef OPIPE_FaceMeshModule_Impl +#define OPIPE_FaceMeshModule_Impl + #include "mediapipe/render/module/common/ola_graph.h" #include "mediapipe/render/core/OpipeDispatch.hpp" #include "face_mesh_module.h" @@ -60,3 +63,4 @@ namespace Opipe std::shared_ptr _delegate; }; } +#endif diff --git a/mediapipe/render/module/beauty/ios/BUILD b/mediapipe/render/module/beauty/ios/BUILD index d53c484e7..20159497e 100644 --- a/mediapipe/render/module/beauty/ios/BUILD +++ b/mediapipe/render/module/beauty/ios/BUILD @@ -29,6 +29,7 @@ objc_library( ], "//conditions:default": [], }), + alwayslink = True, sdk_frameworks = [ "AVFoundation", "CoreGraphics", @@ -41,5 +42,7 @@ objc_library( "CoreVideo", "IOSurface", "Foundation", + "AssetsLibrary", + "QuartzCore", ], ) diff --git a/mediapipe/render/module/beauty/ios/OlaFaceUnity.h b/mediapipe/render/module/beauty/ios/OlaFaceUnity.h index dd1812409..c95c825fa 100644 --- a/mediapipe/render/module/beauty/ios/OlaFaceUnity.h +++ b/mediapipe/render/module/beauty/ios/OlaFaceUnity.h @@ -1,6 +1,9 @@ #import +#import @interface OlaFaceUnity : NSObject -@end \ No newline at end of file +//- (void)processVideoFrame:(CVPixelbufferRef)pixelbuffer; + +@end diff --git a/mediapipe/render/module/beauty/ios/OlaFaceUnity.mm b/mediapipe/render/module/beauty/ios/OlaFaceUnity.mm index e69de29bb..184aac91a 100644 --- a/mediapipe/render/module/beauty/ios/OlaFaceUnity.mm +++ b/mediapipe/render/module/beauty/ios/OlaFaceUnity.mm @@ -0,0 +1,8 @@ +#import "OlaFaceUnity.h" + +@interface OlaFaceUnity() + +@end +@implementation OlaFaceUnity + +@end diff --git a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/bazel_build_settings.py b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/bazel_build_settings.py index 97b3ee3c6..00d14e37e 100644 --- a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/bazel_build_settings.py +++ b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/bazel_build_settings.py @@ -144,70 +144,70 @@ BUILD_SETTINGS = BazelBuildSettings( '/private/var/tmp/_bazel_wangrenzhu/b244be861f40c753b454f38ce4e943dc', 'ios_arm64', { - 'ios_arm64': [ - '--apple_platform_type=ios', - '--cpu=ios_arm64', - '--watchos_cpus=armv7k,arm64_32', + 'watchos_i386': [ + '--apple_platform_type=watchos', + '--watchos_cpus=i386', + ], + 'tvos_x86_64': [ + '--apple_platform_type=tvos', + '--tvos_cpus=x86_64', ], 'watchos_arm64_32': [ '--apple_platform_type=watchos', '--watchos_cpus=armv7k,arm64_32', ], + 'macos_arm64': [ + '--apple_platform_type=macos', + '--cpu=darwin_arm64', + ], + 'ios_x86_64': [ + '--apple_platform_type=ios', + '--cpu=ios_x86_64', + '--watchos_cpus=i386', + ], + 'macos_x86_64': [ + '--apple_platform_type=macos', + '--cpu=darwin_x86_64', + ], + 'ios_armv7': [ + '--apple_platform_type=ios', + '--cpu=ios_armv7', + '--watchos_cpus=armv7k', + ], + 'watchos_x86_64': [ + '--apple_platform_type=watchos', + '--watchos_cpus=i386', + ], + 'macos_arm64e': [ + '--apple_platform_type=macos', + '--cpu=darwin_arm64e', + ], + 'ios_arm64': [ + '--apple_platform_type=ios', + '--cpu=ios_arm64', + '--watchos_cpus=armv7k,arm64_32', + ], 'ios_sim_arm64': [ '--apple_platform_type=ios', '--cpu=ios_sim_arm64', '--watchos_cpus=armv7k', ], - 'macos_arm64': [ - '--apple_platform_type=macos', - '--cpu=darwin_arm64', - ], - 'watchos_armv7k': [ - '--apple_platform_type=watchos', + 'ios_arm64e': [ + '--apple_platform_type=ios', + '--cpu=ios_arm64e', '--watchos_cpus=armv7k,arm64_32', ], - 'macos_x86_64': [ - '--apple_platform_type=macos', - '--cpu=darwin_x86_64', - ], - 'ios_x86_64': [ - '--apple_platform_type=ios', - '--cpu=ios_x86_64', - '--watchos_cpus=i386', - ], - 'macos_arm64e': [ - '--apple_platform_type=macos', - '--cpu=darwin_arm64e', - ], - 'tvos_x86_64': [ + 'tvos_arm64': [ '--apple_platform_type=tvos', - '--tvos_cpus=x86_64', + '--tvos_cpus=arm64', ], 'ios_i386': [ '--apple_platform_type=ios', '--cpu=ios_i386', '--watchos_cpus=i386', ], - 'tvos_arm64': [ - '--apple_platform_type=tvos', - '--tvos_cpus=arm64', - ], - 'watchos_x86_64': [ + 'watchos_armv7k': [ '--apple_platform_type=watchos', - '--watchos_cpus=i386', - ], - 'ios_armv7': [ - '--apple_platform_type=ios', - '--cpu=ios_armv7', - '--watchos_cpus=armv7k', - ], - 'watchos_i386': [ - '--apple_platform_type=watchos', - '--watchos_cpus=i386', - ], - 'ios_arm64e': [ - '--apple_platform_type=ios', - '--cpu=ios_arm64e', '--watchos_cpus=armv7k,arm64_32', ], }, diff --git a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Utils/lldbinit b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Utils/lldbinit index f40010394..8d8c9be87 100644 --- a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Utils/lldbinit +++ b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Utils/lldbinit @@ -3,5 +3,4 @@ platform settings -w "/Users/wangrenzhu/Documents/github/mediapipe-render/" # This enables implicitly loading Clang modules which can be disabled when a Swift module was built with explicit modules enabled. settings set -- target.swift-extra-clang-flags "-fimplicit-module-maps" -# This maps the normalized root to that used by 'OlaFaceUnity.xcodeproj'. -settings set target.source-map "./" "/Users/wangrenzhu/Documents/github/mediapipe-render/" +settings clear target.source-map diff --git a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/project.pbxproj b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/project.pbxproj index 4b8b0ca15..d744ffb9b 100644 --- a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/project.pbxproj +++ b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/project.pbxproj @@ -39,8 +39,6 @@ 49B7A4FC2CF83E7600000001 /* image_to_tensor_utils.cc in tensor */ = {isa = PBXBuildFile; fileRef = 8F62469E2CF83E7600000000 /* image_to_tensor_utils.cc */; }; 49B7A4FC2E87CC4E00000000 /* Target.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E2E87CC4E00000000 /* Target.cpp */; }; 49B7A4FC2E87CC4E00000001 /* Target.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E2E87CC4E00000000 /* Target.cpp */; }; - 49B7A4FC2E87CC4E00000002 /* Target.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E2E87CC4E00000000 /* Target.cpp */; }; - 49B7A4FC2E87CC4E00000003 /* Target.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E2E87CC4E00000000 /* Target.cpp */; }; 49B7A4FC2E9744D600000000 /* gpu_buffer_storage.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E2E9744D600000000 /* gpu_buffer_storage.cc */; }; 49B7A4FC2E9744D600000001 /* gpu_buffer_storage.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E2E9744D600000000 /* gpu_buffer_storage.cc */; }; 49B7A4FC2F39A2D500000000 /* gpu_buffer_multi_pool.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E2F39A2D500000000 /* gpu_buffer_multi_pool.cc */; }; @@ -51,8 +49,6 @@ 49B7A4FC369A201C00000001 /* shader_util.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E369A201C00000000 /* shader_util.cc */; }; 49B7A4FC36A1BCF500000000 /* FilterGroup.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E36A1BCF500000000 /* FilterGroup.cpp */; }; 49B7A4FC36A1BCF500000001 /* FilterGroup.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E36A1BCF500000000 /* FilterGroup.cpp */; }; - 49B7A4FC36A1BCF500000002 /* FilterGroup.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E36A1BCF500000000 /* FilterGroup.cpp */; }; - 49B7A4FC36A1BCF500000003 /* FilterGroup.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E36A1BCF500000000 /* FilterGroup.cpp */; }; 49B7A4FC3950B88400000000 /* GPUImageUtil.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E3950B88400000000 /* GPUImageUtil.cpp */; }; 49B7A4FC3950B88400000001 /* GPUImageUtil.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E3950B88400000000 /* GPUImageUtil.cpp */; }; 49B7A4FC3EF5E91200000000 /* transform_tensor_bilinear.cc in operations */ = {isa = PBXBuildFile; fileRef = 8F62469E3EF5E91200000000 /* transform_tensor_bilinear.cc */; }; @@ -61,12 +57,8 @@ 49B7A4FC3FEF732500000001 /* header_util.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E3FEF732500000000 /* header_util.cc */; }; 49B7A4FC403A0ACA00000000 /* Source.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E403A0ACA00000000 /* Source.cpp */; }; 49B7A4FC403A0ACA00000001 /* Source.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E403A0ACA00000000 /* Source.cpp */; }; - 49B7A4FC403A0ACA00000002 /* Source.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E403A0ACA00000000 /* Source.cpp */; }; - 49B7A4FC403A0ACA00000003 /* Source.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E403A0ACA00000000 /* Source.cpp */; }; 49B7A4FC42538A8300000000 /* FramebufferCache.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E42538A8300000000 /* FramebufferCache.cpp */; }; 49B7A4FC42538A8300000001 /* FramebufferCache.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E42538A8300000000 /* FramebufferCache.cpp */; }; - 49B7A4FC42538A8300000002 /* FramebufferCache.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E42538A8300000000 /* FramebufferCache.cpp */; }; - 49B7A4FC42538A8300000003 /* FramebufferCache.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E42538A8300000000 /* FramebufferCache.cpp */; }; 49B7A4FC489C692A00000000 /* gpu_buffer_storage_cv_pixel_buffer.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E489C692A00000000 /* gpu_buffer_storage_cv_pixel_buffer.cc */; }; 49B7A4FC489C692A00000001 /* gpu_buffer_storage_cv_pixel_buffer.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E489C692A00000000 /* gpu_buffer_storage_cv_pixel_buffer.cc */; }; 49B7A4FC48E4E18100000000 /* MPPTimestampConverter.mm in objc */ = {isa = PBXBuildFile; fileRef = 8F62469E48E4E18100000000 /* MPPTimestampConverter.mm */; }; @@ -79,8 +71,6 @@ 49B7A4FC4CC6C91400000001 /* face_mesh_module.cc in beauty */ = {isa = PBXBuildFile; fileRef = 8F62469E4CC6C91400000000 /* face_mesh_module.cc */; }; 49B7A4FC4CCA495100000000 /* SourceImage.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E4CCA495100000000 /* SourceImage.cpp */; }; 49B7A4FC4CCA495100000001 /* SourceImage.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E4CCA495100000000 /* SourceImage.cpp */; }; - 49B7A4FC4CCA495100000002 /* SourceImage.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E4CCA495100000000 /* SourceImage.cpp */; }; - 49B7A4FC4CCA495100000003 /* SourceImage.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E4CCA495100000000 /* SourceImage.cpp */; }; 49B7A4FC50FA3B1400000000 /* tflite_model_calculator.cc in tflite */ = {isa = PBXBuildFile; fileRef = 8F62469E50FA3B1400000000 /* tflite_model_calculator.cc */; }; 49B7A4FC50FA3B1400000001 /* tflite_model_calculator.cc in tflite */ = {isa = PBXBuildFile; fileRef = 8F62469E50FA3B1400000000 /* tflite_model_calculator.cc */; }; 49B7A4FC53BB6A1B00000000 /* clip_vector_size_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 8F62469E53BB6A1B00000000 /* clip_vector_size_calculator.cc */; }; @@ -91,8 +81,6 @@ 49B7A4FC549B74DB00000001 /* image_to_tensor_calculator.cc in tensor */ = {isa = PBXBuildFile; fileRef = 8F62469E549B74DB00000000 /* image_to_tensor_calculator.cc */; }; 49B7A4FC5771EFBD00000000 /* Framebuffer.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E5771EFBD00000000 /* Framebuffer.cpp */; }; 49B7A4FC5771EFBD00000001 /* Framebuffer.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E5771EFBD00000000 /* Framebuffer.cpp */; }; - 49B7A4FC5771EFBD00000002 /* Framebuffer.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E5771EFBD00000000 /* Framebuffer.cpp */; }; - 49B7A4FC5771EFBD00000003 /* Framebuffer.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E5771EFBD00000000 /* Framebuffer.cpp */; }; 49B7A4FC57CDD24300000000 /* ssd_anchors_calculator.cc in tflite */ = {isa = PBXBuildFile; fileRef = 8F62469E57CDD24300000000 /* ssd_anchors_calculator.cc */; }; 49B7A4FC57CDD24300000001 /* ssd_anchors_calculator.cc in tflite */ = {isa = PBXBuildFile; fileRef = 8F62469E57CDD24300000000 /* ssd_anchors_calculator.cc */; }; 49B7A4FC5D4491B500000000 /* resource_util.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E5D4491B500000000 /* resource_util.cc */; }; @@ -103,8 +91,6 @@ 49B7A4FC61F8D8DE00000001 /* detection_projection_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E61F8D8DE00000000 /* detection_projection_calculator.cc */; }; 49B7A4FC6328969D00000000 /* Context.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E6328969D00000000 /* Context.cpp */; }; 49B7A4FC6328969D00000001 /* Context.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E6328969D00000000 /* Context.cpp */; }; - 49B7A4FC6328969D00000002 /* Context.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E6328969D00000000 /* Context.cpp */; }; - 49B7A4FC6328969D00000003 /* Context.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E6328969D00000000 /* Context.cpp */; }; 49B7A4FC635CAFD500000000 /* image_to_tensor_converter_metal.cc in tensor */ = {isa = PBXBuildFile; fileRef = 8F62469E635CAFD500000000 /* image_to_tensor_converter_metal.cc */; }; 49B7A4FC635CAFD500000001 /* image_to_tensor_converter_metal.cc in tensor */ = {isa = PBXBuildFile; fileRef = 8F62469E635CAFD500000000 /* image_to_tensor_converter_metal.cc */; }; 49B7A4FC6414206900000000 /* tensors_to_detections_calculator.cc in tensor */ = {isa = PBXBuildFile; fileRef = 8F62469E6414206900000000 /* tensors_to_detections_calculator.cc */; }; @@ -151,10 +137,10 @@ 49B7A4FC998F8A2E00000001 /* NSError+util_status.mm in objc */ = {isa = PBXBuildFile; fileRef = 8F62469E998F8A2E00000000 /* NSError+util_status.mm */; }; 49B7A4FC99A19E9200000000 /* resource_util_apple.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E99A19E9200000000 /* resource_util_apple.cc */; }; 49B7A4FC99A19E9200000001 /* resource_util_apple.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E99A19E9200000000 /* resource_util_apple.cc */; }; + 49B7A4FC99A1D41800000000 /* GLThreadDispatch.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E99A1D41800000000 /* GLThreadDispatch.cpp */; }; + 49B7A4FC99A1D41800000001 /* GLThreadDispatch.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E99A1D41800000000 /* GLThreadDispatch.cpp */; }; 49B7A4FC9A0C486600000000 /* Filter.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E9A0C486600000000 /* Filter.cpp */; }; 49B7A4FC9A0C486600000001 /* Filter.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E9A0C486600000000 /* Filter.cpp */; }; - 49B7A4FC9A0C486600000002 /* Filter.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E9A0C486600000000 /* Filter.cpp */; }; - 49B7A4FC9A0C486600000003 /* Filter.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E9A0C486600000000 /* Filter.cpp */; }; 49B7A4FC9E41D6ED00000000 /* annotation_overlay_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E9E41D6ED00000000 /* annotation_overlay_calculator.cc */; }; 49B7A4FC9E41D6ED00000001 /* annotation_overlay_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E9E41D6ED00000000 /* annotation_overlay_calculator.cc */; }; 49B7A4FCA0A3B78B00000000 /* landmark_projection_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469EA0A3B78B00000000 /* landmark_projection_calculator.cc */; }; @@ -167,8 +153,6 @@ 49B7A4FCA59EA68600000001 /* face_mesh_module_imp.cc in beauty */ = {isa = PBXBuildFile; fileRef = 8F62469EA59EA68600000000 /* face_mesh_module_imp.cc */; }; 49B7A4FCA688677600000000 /* SourceCamera.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469EA688677600000000 /* SourceCamera.cpp */; }; 49B7A4FCA688677600000001 /* SourceCamera.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469EA688677600000000 /* SourceCamera.cpp */; }; - 49B7A4FCA688677600000002 /* SourceCamera.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469EA688677600000000 /* SourceCamera.cpp */; }; - 49B7A4FCA688677600000003 /* SourceCamera.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469EA688677600000000 /* SourceCamera.cpp */; }; 49B7A4FCAF368E8800000000 /* face_landmarks_to_render_data_calculator.cc in calculators */ = {isa = PBXBuildFile; fileRef = 8F62469EAF368E8800000000 /* face_landmarks_to_render_data_calculator.cc */; }; 49B7A4FCAF368E8800000001 /* face_landmarks_to_render_data_calculator.cc in calculators */ = {isa = PBXBuildFile; fileRef = 8F62469EAF368E8800000000 /* face_landmarks_to_render_data_calculator.cc */; }; 49B7A4FCB1AC117700000000 /* gate_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 8F62469EB1AC117700000000 /* gate_calculator.cc */; }; @@ -177,6 +161,8 @@ 49B7A4FCB1FDA98700000001 /* math_utils.cpp in math */ = {isa = PBXBuildFile; fileRef = 8F62469EB1FDA98700000000 /* math_utils.cpp */; }; 49B7A4FCB288401C00000000 /* ola_graph.cc in common */ = {isa = PBXBuildFile; fileRef = 8F62469EB288401C00000000 /* ola_graph.cc */; }; 49B7A4FCB288401C00000001 /* ola_graph.cc in common */ = {isa = PBXBuildFile; fileRef = 8F62469EB288401C00000000 /* ola_graph.cc */; }; + 49B7A4FCB8521D3400000000 /* OpipeDispatch.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469EB8521D3400000000 /* OpipeDispatch.cpp */; }; + 49B7A4FCB8521D3400000001 /* OpipeDispatch.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469EB8521D3400000000 /* OpipeDispatch.cpp */; }; 49B7A4FCBA4BE9D200000000 /* MPPGraphGPUData.mm in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469EBA4BE9D200000000 /* MPPGraphGPUData.mm */; }; 49B7A4FCBA4BE9D200000001 /* MPPGraphGPUData.mm in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469EBA4BE9D200000000 /* MPPGraphGPUData.mm */; }; 49B7A4FCBC1DF28100000000 /* landmarks_to_render_data_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469EBC1DF28100000000 /* landmarks_to_render_data_calculator.cc */; }; @@ -189,14 +175,10 @@ 49B7A4FCC05BE00400000001 /* gl_calculator_helper_impl_common.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469EC05BE00400000000 /* gl_calculator_helper_impl_common.cc */; }; 49B7A4FCC345270B00000000 /* IOSTarget.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469EC345270B00000000 /* IOSTarget.cpp */; }; 49B7A4FCC345270B00000001 /* IOSTarget.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469EC345270B00000000 /* IOSTarget.cpp */; }; - 49B7A4FCC345270B00000002 /* IOSTarget.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469EC345270B00000000 /* IOSTarget.cpp */; }; - 49B7A4FCC345270B00000003 /* IOSTarget.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469EC345270B00000000 /* IOSTarget.cpp */; }; 49B7A4FCC43404B200000000 /* tflite_custom_op_resolver_calculator.cc in tflite */ = {isa = PBXBuildFile; fileRef = 8F62469EC43404B200000000 /* tflite_custom_op_resolver_calculator.cc */; }; 49B7A4FCC43404B200000001 /* tflite_custom_op_resolver_calculator.cc in tflite */ = {isa = PBXBuildFile; fileRef = 8F62469EC43404B200000000 /* tflite_custom_op_resolver_calculator.cc */; }; 49B7A4FCC7392BFD00000000 /* TargetView.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469EC7392BFD00000000 /* TargetView.cpp */; }; 49B7A4FCC7392BFD00000001 /* TargetView.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469EC7392BFD00000000 /* TargetView.cpp */; }; - 49B7A4FCC7392BFD00000002 /* TargetView.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469EC7392BFD00000000 /* TargetView.cpp */; }; - 49B7A4FCC7392BFD00000003 /* TargetView.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469EC7392BFD00000000 /* TargetView.cpp */; }; 49B7A4FCCCE7F65F00000000 /* landmarks_refinement_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469ECCE7F65F00000000 /* landmarks_refinement_calculator.cc */; }; 49B7A4FCCCE7F65F00000001 /* landmarks_refinement_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469ECCE7F65F00000000 /* landmarks_refinement_calculator.cc */; }; 49B7A4FCCD95EE7200000000 /* previous_loopback_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 8F62469ECD95EE7200000000 /* previous_loopback_calculator.cc */; }; @@ -215,8 +197,6 @@ 49B7A4FCD8BCE6D000000001 /* tensors_to_floats_calculator.cc in tensor */ = {isa = PBXBuildFile; fileRef = 8F62469ED8BCE6D000000000 /* tensors_to_floats_calculator.cc */; }; 49B7A4FCD9FC1F1200000000 /* GLProgram.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469ED9FC1F1200000000 /* GLProgram.cpp */; }; 49B7A4FCD9FC1F1200000001 /* GLProgram.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469ED9FC1F1200000000 /* GLProgram.cpp */; }; - 49B7A4FCD9FC1F1200000002 /* GLProgram.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469ED9FC1F1200000000 /* GLProgram.cpp */; }; - 49B7A4FCD9FC1F1200000003 /* GLProgram.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469ED9FC1F1200000000 /* GLProgram.cpp */; }; 49B7A4FCDBE5CD1B00000000 /* Ref.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469EDBE5CD1B00000000 /* Ref.cpp */; }; 49B7A4FCDBE5CD1B00000001 /* Ref.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469EDBE5CD1B00000000 /* Ref.cpp */; }; 49B7A4FCDD869D9E00000000 /* gl_calculator_helper.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469EDD869D9E00000000 /* gl_calculator_helper.cc */; }; @@ -237,6 +217,8 @@ 49B7A4FCF4C8279B00000001 /* OlaFaceUnity.mm in ios */ = {isa = PBXBuildFile; fileRef = 8F62469EF4C8279B00000000 /* OlaFaceUnity.mm */; }; 49B7A4FCF51362E900000000 /* gl_texture_buffer_pool.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469EF51362E900000000 /* gl_texture_buffer_pool.cc */; }; 49B7A4FCF51362E900000001 /* gl_texture_buffer_pool.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469EF51362E900000000 /* gl_texture_buffer_pool.cc */; }; + 49B7A4FCFA8D3DEA00000000 /* dispatch_queue.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469EFA8D3DEA00000000 /* dispatch_queue.cpp */; }; + 49B7A4FCFA8D3DEA00000001 /* dispatch_queue.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469EFA8D3DEA00000000 /* dispatch_queue.cpp */; }; 49B7A4FCFD02751100000000 /* op_resolver.cc in tflite */ = {isa = PBXBuildFile; fileRef = 8F62469EFD02751100000000 /* op_resolver.cc */; }; 49B7A4FCFD02751100000001 /* op_resolver.cc in tflite */ = {isa = PBXBuildFile; fileRef = 8F62469EFD02751100000000 /* op_resolver.cc */; }; 49B7A4FCFF18EE3C00000000 /* MPPMetalUtil.mm in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469EFF18EE3C00000000 /* MPPMetalUtil.mm */; }; @@ -262,12 +244,6 @@ proxyType = 1; remoteGlobalIDString = D50916B90B74D91800000000; }; - 7571235F0EBED90100000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D50916B90EBED90000000000; - }; 7571235F14B7442B00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 22488B02D730B92B00000000 /* Project object */; @@ -328,12 +304,6 @@ proxyType = 1; remoteGlobalIDString = D50916B939FF367E00000000; }; - 7571235F47A74E8D00000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D50916B947A74E8C00000000; - }; 7571235F4835E8D500000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 22488B02D730B92B00000000 /* Project object */; @@ -358,6 +328,12 @@ proxyType = 1; remoteGlobalIDString = D50916B9507BECC600000000; }; + 7571235F519E3A1B00000000 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 22488B02D730B92B00000000 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D50916B9519E3A1A00000000; + }; 7571235F52EE187D00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 22488B02D730B92B00000000 /* Project object */; @@ -370,12 +346,6 @@ proxyType = 1; remoteGlobalIDString = D50916B955AF4C6400000000; }; - 7571235F5924467F00000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D50916B95924467E00000000; - }; 7571235F5D80A99B00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 22488B02D730B92B00000000 /* Project object */; @@ -580,6 +550,12 @@ proxyType = 1; remoteGlobalIDString = D50916B9DCA2423600000000; }; + 7571235FDD40E3B300000000 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 22488B02D730B92B00000000 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D50916B9DD40E3B200000000; + }; 7571235FE5D2ED5700000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 22488B02D730B92B00000000 /* Project object */; @@ -598,12 +574,6 @@ proxyType = 1; remoteGlobalIDString = D50916B9EEDCEF1800000000; }; - 7571235FF4D779E300000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D50916B9F4D779E200000000; - }; 7571235FF5035E2500000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 22488B02D730B92B00000000 /* Project object */; @@ -660,7 +630,6 @@ 8F62469E1CCA511900000000 /* image_to_tensor_converter_metal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = image_to_tensor_converter_metal.h; path = mediapipe/calculators/tensor/image_to_tensor_converter_metal.h; sourceTree = ""; }; 8F62469E1DE1C67300000000 /* gl_texture_view.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_texture_view.h; path = mediapipe/gpu/gl_texture_view.h; sourceTree = ""; }; 8F62469E1E08E4F200000000 /* annotation_renderer.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = annotation_renderer.cc; path = mediapipe/util/annotation_renderer.cc; sourceTree = ""; }; - 8F62469E1E29E90E00000000 /* lib_idx_OlaFaceUnityLibrary_63B2D14F_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_OlaFaceUnityLibrary_63B2D14F_ios_min15.5.a; path = lib_idx_OlaFaceUnityLibrary_63B2D14F_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8F62469E1E79ACEC00000000 /* lib_idx_mediapipe_framework_ios_596FA5D1_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_mediapipe_framework_ios_596FA5D1_ios_min15.5.a; path = lib_idx_mediapipe_framework_ios_596FA5D1_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8F62469E20BF236600000000 /* end_loop_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = end_loop_calculator.h; path = mediapipe/calculators/core/end_loop_calculator.h; sourceTree = ""; }; 8F62469E2111801D00000000 /* vec2.inl */ = {isa = PBXFileReference; lastKnownFileType = "public.c-plus-plus-inline-header"; name = vec2.inl; path = mediapipe/render/core/math/vec2.inl; sourceTree = ""; }; @@ -792,12 +761,12 @@ 8F62469E841EB37B00000000 /* collection_has_min_size_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = collection_has_min_size_calculator.cc; path = mediapipe/calculators/util/collection_has_min_size_calculator.cc; sourceTree = ""; }; 8F62469E849B03E000000000 /* MPPMetalHelper.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = MPPMetalHelper.mm; path = mediapipe/gpu/MPPMetalHelper.mm; sourceTree = ""; }; 8F62469E8563DF9500000000 /* face_mesh_beauty_render.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = face_mesh_beauty_render.cc; path = mediapipe/render/module/beauty/face_mesh_beauty_render.cc; sourceTree = ""; }; + 8F62469E85C9056E00000000 /* lib_idx_core_84469CC7_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_core_84469CC7_ios_min11.0.a; path = lib_idx_core_84469CC7_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8F62469E85ED468800000000 /* lib_idx_cpu_op_resolver_E63A3714_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_cpu_op_resolver_E63A3714_ios_min15.5.a; path = lib_idx_cpu_op_resolver_E63A3714_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8F62469E8618537700000000 /* gpu_shared_data_internal.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gpu_shared_data_internal.cc; path = mediapipe/gpu/gpu_shared_data_internal.cc; sourceTree = ""; }; 8F62469E888D533E00000000 /* lib_idx_max_unpooling_max_pool_argmax_09627F19_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_max_unpooling_max_pool_argmax_09627F19_ios_min11.0.a; path = lib_idx_max_unpooling_max_pool_argmax_09627F19_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8F62469E8968C08000000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/render/core/math/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; 8F62469E89917A6900000000 /* op_resolver.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = op_resolver.h; path = mediapipe/util/tflite/op_resolver.h; sourceTree = ""; }; - 8F62469E89BFDCEA00000000 /* lib_idx_core_core-ios_731E135C_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = "lib_idx_core_core-ios_731E135C_ios_min11.0.a"; path = "lib_idx_core_core-ios_731E135C_ios_min11.0.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 8F62469E8A36159200000000 /* gl_thread_collector.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_thread_collector.h; path = mediapipe/gpu/gl_thread_collector.h; sourceTree = ""; }; 8F62469E8B3041AE00000000 /* lib_idx_resource_util_0C14DDDC_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_resource_util_0C14DDDC_ios_min11.0.a; path = lib_idx_resource_util_0C14DDDC_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8F62469E8BDFD12800000000 /* lib_idx_tensors_to_detections_calculator_B4C99DEA_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tensors_to_detections_calculator_B4C99DEA_ios_min15.5.a; path = lib_idx_tensors_to_detections_calculator_B4C99DEA_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -819,15 +788,16 @@ 8F62469E9713725000000000 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min11.0.a; path = lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8F62469E98313BAC00000000 /* lib_idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min15.5.a; path = lib_idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8F62469E984EF97C00000000 /* gpu_service.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gpu_service.cc; path = mediapipe/gpu/gpu_service.cc; sourceTree = ""; }; + 8F62469E98F29E1100000000 /* OpipeDispatch.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = OpipeDispatch.hpp; path = mediapipe/render/core/OpipeDispatch.hpp; sourceTree = ""; }; 8F62469E992468E800000000 /* face_mesh_beauty_render.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = face_mesh_beauty_render.h; path = mediapipe/render/module/beauty/face_mesh_beauty_render.h; sourceTree = ""; }; 8F62469E998F8A2E00000000 /* NSError+util_status.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "NSError+util_status.mm"; path = "mediapipe/objc/NSError+util_status.mm"; sourceTree = ""; }; 8F62469E99A19E9200000000 /* resource_util_apple.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = resource_util_apple.cc; path = mediapipe/util/resource_util_apple.cc; sourceTree = ""; }; + 8F62469E99A1D41800000000 /* GLThreadDispatch.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = GLThreadDispatch.cpp; path = mediapipe/render/core/GLThreadDispatch.cpp; sourceTree = ""; }; 8F62469E9A0C486600000000 /* Filter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Filter.cpp; path = mediapipe/render/core/Filter.cpp; sourceTree = ""; }; 8F62469E9A67603600000000 /* lib_idx_image_properties_calculator_gpu_service_941BB6CA_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_properties_calculator_gpu_service_941BB6CA_ios_min15.5.a; path = lib_idx_image_properties_calculator_gpu_service_941BB6CA_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8F62469E9C12AC1000000000 /* lib_idx_annotation_renderer_1DCBFDF7_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_annotation_renderer_1DCBFDF7_ios_min15.5.a; path = lib_idx_annotation_renderer_1DCBFDF7_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8F62469E9E41D6ED00000000 /* annotation_overlay_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = annotation_overlay_calculator.cc; path = mediapipe/calculators/util/annotation_overlay_calculator.cc; sourceTree = ""; }; 8F62469E9F01B81400000000 /* lib_idx_op_resolver_29CCF89E_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_op_resolver_29CCF89E_ios_min11.0.a; path = lib_idx_op_resolver_29CCF89E_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E9FCBB85800000000 /* lib_idx_FaceMeshGPULibrary_61E6B091_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_FaceMeshGPULibrary_61E6B091_ios_min11.0.a; path = lib_idx_FaceMeshGPULibrary_61E6B091_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8F62469EA0A3B78B00000000 /* landmark_projection_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = landmark_projection_calculator.cc; path = mediapipe/calculators/util/landmark_projection_calculator.cc; sourceTree = ""; }; 8F62469EA1639D0C00000000 /* detections_to_rects_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = detections_to_rects_calculator.cc; path = mediapipe/calculators/util/detections_to_rects_calculator.cc; sourceTree = ""; }; 8F62469EA1C5D7DE00000000 /* Source.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = Source.hpp; path = mediapipe/render/core/Source.hpp; sourceTree = ""; }; @@ -847,6 +817,7 @@ 8F62469EAE2EAF7600000000 /* lib_idx_gl_calculator_helper_6AE62265_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_gl_calculator_helper_6AE62265_ios_min15.5.a; path = lib_idx_gl_calculator_helper_6AE62265_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8F62469EAF11437800000000 /* lib_idx_split_vector_calculator_73890910_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_split_vector_calculator_73890910_ios_min15.5.a; path = lib_idx_split_vector_calculator_73890910_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8F62469EAF368E8800000000 /* face_landmarks_to_render_data_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = face_landmarks_to_render_data_calculator.cc; path = mediapipe/graphs/face_mesh/calculators/face_landmarks_to_render_data_calculator.cc; sourceTree = ""; }; + 8F62469EAFAD908E00000000 /* dispatch_queue.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = dispatch_queue.h; path = mediapipe/render/core/dispatch_queue.h; sourceTree = ""; }; 8F62469EAFD40B0000000000 /* shader_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = shader_util.h; path = mediapipe/gpu/shader_util.h; sourceTree = ""; }; 8F62469EB1085FB600000000 /* lib_idx_MPPGraphGPUData_DE328030_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_MPPGraphGPUData_DE328030_ios_min15.5.a; path = lib_idx_MPPGraphGPUData_DE328030_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8F62469EB114B9D600000000 /* OlaFaceUnity.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = OlaFaceUnity.h; path = mediapipe/render/module/beauty/ios/OlaFaceUnity.h; sourceTree = ""; }; @@ -862,6 +833,7 @@ 8F62469EB4D149AA00000000 /* MPPMetalHelper.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MPPMetalHelper.h; path = mediapipe/gpu/MPPMetalHelper.h; sourceTree = ""; }; 8F62469EB6285B2000000000 /* ola_graph.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ola_graph.h; path = mediapipe/render/module/common/ola_graph.h; sourceTree = ""; }; 8F62469EB6FE491A00000000 /* TargetView.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = TargetView.hpp; path = mediapipe/render/core/TargetView.hpp; sourceTree = ""; }; + 8F62469EB8521D3400000000 /* OpipeDispatch.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = OpipeDispatch.cpp; path = mediapipe/render/core/OpipeDispatch.cpp; sourceTree = ""; }; 8F62469EB86681C200000000 /* lib_idx_shader_util_209E4ED9_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_shader_util_209E4ED9_ios_min15.5.a; path = lib_idx_shader_util_209E4ED9_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8F62469EB9DEA8D000000000 /* lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min15.5.a; path = lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8F62469EBA4BE9D200000000 /* MPPGraphGPUData.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = MPPGraphGPUData.mm; path = mediapipe/gpu/MPPGraphGPUData.mm; sourceTree = ""; }; @@ -870,8 +842,8 @@ 8F62469EBC1DF28100000000 /* landmarks_to_render_data_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = landmarks_to_render_data_calculator.cc; path = mediapipe/calculators/util/landmarks_to_render_data_calculator.cc; sourceTree = ""; }; 8F62469EBC7F293600000000 /* lib_idx_clip_vector_size_calculator_B472A55B_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_clip_vector_size_calculator_B472A55B_ios_min15.5.a; path = lib_idx_clip_vector_size_calculator_B472A55B_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8F62469EBCE7858600000000 /* thresholding_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = thresholding_calculator.cc; path = mediapipe/calculators/util/thresholding_calculator.cc; sourceTree = ""; }; - 8F62469EBE46B07800000000 /* lib_idx_FaceMeshGPULibrary_61E6B091_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_FaceMeshGPULibrary_61E6B091_ios_min15.5.a; path = lib_idx_FaceMeshGPULibrary_61E6B091_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8F62469EBED4CA2400000000 /* detections_to_render_data_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = detections_to_render_data_calculator.cc; path = mediapipe/calculators/util/detections_to_render_data_calculator.cc; sourceTree = ""; }; + 8F62469EBEF81DBA00000000 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min15.5.a; path = lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8F62469EBF95A75D00000000 /* image_frame_view.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = image_frame_view.h; path = mediapipe/gpu/image_frame_view.h; sourceTree = ""; }; 8F62469EC05BE00400000000 /* gl_calculator_helper_impl_common.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gl_calculator_helper_impl_common.cc; path = mediapipe/gpu/gl_calculator_helper_impl_common.cc; sourceTree = ""; }; 8F62469EC1EEAB6200000000 /* NSError+util_status.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "NSError+util_status.h"; path = "mediapipe/objc/NSError+util_status.h"; sourceTree = ""; }; @@ -883,6 +855,7 @@ 8F62469EC6F9540300000000 /* gpu_service.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gpu_service.h; path = mediapipe/gpu/gpu_service.h; sourceTree = ""; }; 8F62469EC7392BFD00000000 /* TargetView.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = TargetView.cpp; path = mediapipe/render/core/TargetView.cpp; sourceTree = ""; }; 8F62469EC7C4069700000000 /* vec3.inl */ = {isa = PBXFileReference; lastKnownFileType = "public.c-plus-plus-inline-header"; name = vec3.inl; path = mediapipe/render/core/math/vec3.inl; sourceTree = ""; }; + 8F62469EC8AE2DAC00000000 /* GLThreadDispatch.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = GLThreadDispatch.h; path = mediapipe/render/core/GLThreadDispatch.h; sourceTree = ""; }; 8F62469EC9964E7600000000 /* lib_idx_gl_simple_shaders_2CB9CEAD_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_gl_simple_shaders_2CB9CEAD_ios_min15.5.a; path = lib_idx_gl_simple_shaders_2CB9CEAD_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8F62469ECB6D125D00000000 /* mat4.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = mat4.hpp; path = mediapipe/render/core/math/mat4.hpp; sourceTree = ""; }; 8F62469ECB93143800000000 /* lib_idx_transpose_conv_bias_94247583_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_transpose_conv_bias_94247583_ios_min11.0.a; path = lib_idx_transpose_conv_bias_94247583_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -897,6 +870,7 @@ 8F62469ED21F400300000000 /* begin_loop_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = begin_loop_calculator.h; path = mediapipe/calculators/core/begin_loop_calculator.h; sourceTree = ""; }; 8F62469ED2C19F4E00000000 /* lib_idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min15.5.a; path = lib_idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8F62469ED30BA54B00000000 /* CFHolder.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CFHolder.h; path = mediapipe/objc/CFHolder.h; sourceTree = ""; }; + 8F62469ED3E77BD800000000 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min11.0.a; path = lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8F62469ED4FD547400000000 /* lib_idx_begin_loop_calculator_55C0335F_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_begin_loop_calculator_55C0335F_ios_min11.0.a; path = lib_idx_begin_loop_calculator_55C0335F_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8F62469ED71B607200000000 /* split_proto_list_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = split_proto_list_calculator.cc; path = mediapipe/calculators/core/split_proto_list_calculator.cc; sourceTree = ""; }; 8F62469ED78C49CA00000000 /* lib_idx_pixel_buffer_pool_util_C139F8B5_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_pixel_buffer_pool_util_C139F8B5_ios_min15.5.a; path = lib_idx_pixel_buffer_pool_util_C139F8B5_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -908,10 +882,8 @@ 8F62469EDAE0FA6B00000000 /* pixel_buffer_pool_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = pixel_buffer_pool_util.h; path = mediapipe/gpu/pixel_buffer_pool_util.h; sourceTree = ""; }; 8F62469EDBE5CD1B00000000 /* Ref.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Ref.cpp; path = mediapipe/render/core/Ref.cpp; sourceTree = ""; }; 8F62469EDC30573A00000000 /* vec3.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = vec3.hpp; path = mediapipe/render/core/math/vec3.hpp; sourceTree = ""; }; - 8F62469EDCE124F400000000 /* lib_idx_OlaFaceUnityLibrary_63B2D14F_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_OlaFaceUnityLibrary_63B2D14F_ios_min11.0.a; path = lib_idx_OlaFaceUnityLibrary_63B2D14F_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8F62469EDD869D9E00000000 /* gl_calculator_helper.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gl_calculator_helper.cc; path = mediapipe/gpu/gl_calculator_helper.cc; sourceTree = ""; }; 8F62469EDED8FF2900000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/graphs/face_mesh/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - 8F62469EDF10012C00000000 /* lib_idx_core_core-ios_731E135C_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = "lib_idx_core_core-ios_731E135C_ios_min15.5.a"; path = "lib_idx_core_core-ios_731E135C_ios_min15.5.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 8F62469EDF9B2B7600000000 /* lib_idx_annotation_overlay_calculator_7772C341_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_annotation_overlay_calculator_7772C341_ios_min11.0.a; path = lib_idx_annotation_overlay_calculator_7772C341_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8F62469EE10D2C8600000000 /* lib_idx_util_66001351_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_util_66001351_ios_min11.0.a; path = lib_idx_util_66001351_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8F62469EE11EEBC500000000 /* Framebuffer.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = Framebuffer.hpp; path = mediapipe/render/core/Framebuffer.hpp; sourceTree = ""; }; @@ -938,8 +910,10 @@ 8F62469EF4C8279B00000000 /* OlaFaceUnity.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = OlaFaceUnity.mm; path = mediapipe/render/module/beauty/ios/OlaFaceUnity.mm; sourceTree = ""; }; 8F62469EF4DBABD700000000 /* gpu_buffer_storage_cv_pixel_buffer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gpu_buffer_storage_cv_pixel_buffer.h; path = mediapipe/gpu/gpu_buffer_storage_cv_pixel_buffer.h; sourceTree = ""; }; 8F62469EF51362E900000000 /* gl_texture_buffer_pool.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gl_texture_buffer_pool.cc; path = mediapipe/gpu/gl_texture_buffer_pool.cc; sourceTree = ""; }; + 8F62469EF57314E600000000 /* lib_idx_core_84469CC7_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_core_84469CC7_ios_min15.5.a; path = lib_idx_core_84469CC7_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8F62469EF66CD23100000000 /* Info.plist */ = {isa = PBXFileReference; explicitFileType = text.plist; name = Info.plist; path = "OlaFaceUnity.xcodeproj/.tulsi/tulsi-execution-root/bazel-tulsi-includes/x/x/mediapipe/render/module/beauty/ios/OlaFaceUnityFramework-intermediates/Info.plist"; sourceTree = SOURCE_ROOT; }; 8F62469EF673763B00000000 /* FilterGroup.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = FilterGroup.hpp; path = mediapipe/render/core/FilterGroup.hpp; sourceTree = ""; }; + 8F62469EFA8D3DEA00000000 /* dispatch_queue.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dispatch_queue.cpp; path = mediapipe/render/core/dispatch_queue.cpp; sourceTree = ""; }; 8F62469EFB24DFE200000000 /* association_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = association_calculator.h; path = mediapipe/calculators/util/association_calculator.h; sourceTree = ""; }; 8F62469EFCCC889200000000 /* GPUImageMacros.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = GPUImageMacros.h; path = mediapipe/render/core/GPUImageMacros.h; sourceTree = ""; }; 8F62469EFD02751100000000 /* op_resolver.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = op_resolver.cc; path = mediapipe/util/tflite/op_resolver.cc; sourceTree = ""; }; @@ -1026,6 +1000,8 @@ 8F62469E2F07C29D00000000 /* FramebufferCache.hpp */, 8F62469ED9FC1F1200000000 /* GLProgram.cpp */, 8F62469E5426685200000000 /* GLProgram.hpp */, + 8F62469E99A1D41800000000 /* GLThreadDispatch.cpp */, + 8F62469EC8AE2DAC00000000 /* GLThreadDispatch.h */, 8F62469E82C6800100000000 /* GPUImage-x.h */, 8F62469EFCCC889200000000 /* GPUImageMacros.h */, 8F62469E7882FF9000000000 /* GPUImageTarget.h */, @@ -1033,6 +1009,8 @@ 8F62469E4907602900000000 /* GPUImageUtil.h */, 8F62469EC345270B00000000 /* IOSTarget.cpp */, 8F62469E7F557F5700000000 /* IOSTarget.hpp */, + 8F62469EB8521D3400000000 /* OpipeDispatch.cpp */, + 8F62469E98F29E1100000000 /* OpipeDispatch.hpp */, 8F62469EDBE5CD1B00000000 /* Ref.cpp */, 8F62469E46E60CF500000000 /* Ref.hpp */, 8F62469E403A0ACA00000000 /* Source.cpp */, @@ -1045,6 +1023,8 @@ 8F62469EEDBFEFFF00000000 /* Target.hpp */, 8F62469EC7392BFD00000000 /* TargetView.cpp */, 8F62469EB6FE491A00000000 /* TargetView.hpp */, + 8F62469EFA8D3DEA00000000 /* dispatch_queue.cpp */, + 8F62469EAFAD908E00000000 /* dispatch_queue.h */, B6073D51547F41C200000000 /* math */, 8F62469E64A7F94D00000000 /* math.cpp */, 8F62469E1601B9F400000000 /* math.hpp */, @@ -1190,16 +1170,14 @@ B6073D516DF9891700000000 /* Indexer */ = { isa = PBXGroup; children = ( - 8F62469E9FCBB85800000000 /* lib_idx_FaceMeshGPULibrary_61E6B091_ios_min11.0.a */, - 8F62469EBE46B07800000000 /* lib_idx_FaceMeshGPULibrary_61E6B091_ios_min15.5.a */, 8F62469ED1F0DC8C00000000 /* lib_idx_MPPGraphGPUData_DE328030_ios_min11.0.a */, 8F62469EB1085FB600000000 /* lib_idx_MPPGraphGPUData_DE328030_ios_min15.5.a */, 8F62469E17399DDC00000000 /* lib_idx_MPPMetalHelper_8A6739B5_ios_min11.0.a */, 8F62469E5BC465A400000000 /* lib_idx_MPPMetalHelper_8A6739B5_ios_min15.5.a */, 8F62469E8F2DAC9800000000 /* lib_idx_MPPMetalUtil_622319D3_ios_min11.0.a */, 8F62469E2BADC1D200000000 /* lib_idx_MPPMetalUtil_622319D3_ios_min15.5.a */, - 8F62469EDCE124F400000000 /* lib_idx_OlaFaceUnityLibrary_63B2D14F_ios_min11.0.a */, - 8F62469E1E29E90E00000000 /* lib_idx_OlaFaceUnityLibrary_63B2D14F_ios_min15.5.a */, + 8F62469ED3E77BD800000000 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min11.0.a */, + 8F62469EBEF81DBA00000000 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min15.5.a */, 8F62469EDF9B2B7600000000 /* lib_idx_annotation_overlay_calculator_7772C341_ios_min11.0.a */, 8F62469E013DE90000000000 /* lib_idx_annotation_overlay_calculator_7772C341_ios_min15.5.a */, 8F62469E610A735200000000 /* lib_idx_annotation_renderer_1DCBFDF7_ios_min11.0.a */, @@ -1208,8 +1186,8 @@ 8F62469E43C533AA00000000 /* lib_idx_begin_loop_calculator_55C0335F_ios_min15.5.a */, 8F62469EA6CEF2BC00000000 /* lib_idx_clip_vector_size_calculator_B472A55B_ios_min11.0.a */, 8F62469EBC7F293600000000 /* lib_idx_clip_vector_size_calculator_B472A55B_ios_min15.5.a */, - 8F62469E89BFDCEA00000000 /* lib_idx_core_core-ios_731E135C_ios_min11.0.a */, - 8F62469EDF10012C00000000 /* lib_idx_core_core-ios_731E135C_ios_min15.5.a */, + 8F62469E85C9056E00000000 /* lib_idx_core_84469CC7_ios_min11.0.a */, + 8F62469EF57314E600000000 /* lib_idx_core_84469CC7_ios_min15.5.a */, 8F62469E029424C000000000 /* lib_idx_cpu_op_resolver_E63A3714_ios_min11.0.a */, 8F62469E85ED468800000000 /* lib_idx_cpu_op_resolver_E63A3714_ios_min15.5.a */, 8F62469EEB9B4B7E00000000 /* lib_idx_cpu_util_D57AACFF_ios_min11.0.a */, @@ -1616,7 +1594,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F5E12C3CB500000000 /* Build configuration list for PBXNativeTarget "_idx_math_661952D5_ios_min11.0" */; buildPhases = ( - 3E7AC1A6000000000000000A /* Sources */, + 3E7AC1A60000000000000017 /* Sources */, ); buildRules = ( ); @@ -1632,7 +1610,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F5073F4E6E00000000 /* Build configuration list for PBXNativeTarget "_idx_util_66001351_ios_min11.0" */; buildPhases = ( - 3E7AC1A60000000000000002 /* Sources */, + 3E7AC1A60000000000000004 /* Sources */, ); buildRules = ( ); @@ -1648,7 +1626,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F5915544F700000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_loader_6F62D289_ios_min11.0" */; buildPhases = ( - 3E7AC1A60000000000000043 /* Sources */, + 3E7AC1A60000000000000041 /* Sources */, ); buildRules = ( ); @@ -1665,7 +1643,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F54DC1F93000000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_detections_calculator_B4C99DEA_ios_min11.0" */; buildPhases = ( - 3E7AC1A60000000000000052 /* Sources */, + 3E7AC1A60000000000000050 /* Sources */, ); buildRules = ( ); @@ -1677,31 +1655,11 @@ productReference = 8F62469E2451D66600000000 /* lib_idx_tensors_to_detections_calculator_B4C99DEA_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - D50916B90EBED90000000000 /* _idx_core_core-ios_731E135C_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5581D203400000000 /* Build configuration list for PBXNativeTarget "_idx_core_core-ios_731E135C_ios_min11.0" */; - buildPhases = ( - 3E7AC1A60000000000000008 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C87194506D62510500000000 /* PBXTargetDependency */, - C87194506D62510500000000 /* PBXTargetDependency */, - C87194506D62510500000000 /* PBXTargetDependency */, - C871945004A520C300000000 /* PBXTargetDependency */, - ); - name = "_idx_core_core-ios_731E135C_ios_min11.0"; - productName = "_idx_core_core-ios_731E135C_ios_min11.0"; - productReference = 8F62469E89BFDCEA00000000 /* lib_idx_core_core-ios_731E135C_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; D50916B91241B0E400000000 /* _idx_inference_calculator_metal_65084AC7_ios_min11.0 */ = { isa = PBXNativeTarget; buildConfigurationList = D31CF1F5D01558D200000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_metal_65084AC7_ios_min11.0" */; buildPhases = ( - 3E7AC1A60000000000000048 /* Sources */, + 3E7AC1A60000000000000046 /* Sources */, ); buildRules = ( ); @@ -1709,8 +1667,8 @@ C8719450B67384D100000000 /* PBXTargetDependency */, C87194507E562BDF00000000 /* PBXTargetDependency */, C871945014B7442B00000000 /* PBXTargetDependency */, - C8719450FB58229B00000000 /* PBXTargetDependency */, C8719450CB8F507D00000000 /* PBXTargetDependency */, + C8719450FB58229B00000000 /* PBXTargetDependency */, C87194504C962DED00000000 /* PBXTargetDependency */, ); name = _idx_inference_calculator_metal_65084AC7_ios_min11.0; @@ -1722,14 +1680,14 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F50931EF1C00000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min11.0" */; buildPhases = ( - 3E7AC1A60000000000000042 /* Sources */, + 3E7AC1A60000000000000040 /* Sources */, ); buildRules = ( ); dependencies = ( C8719450B67384D100000000 /* PBXTargetDependency */, - C87194500B74D91900000000 /* PBXTargetDependency */, C8719450BCE0083900000000 /* PBXTargetDependency */, + C87194500B74D91900000000 /* PBXTargetDependency */, ); name = _idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min11.0; productName = _idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min11.0; @@ -1740,7 +1698,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F57996204C00000000 /* Build configuration list for PBXNativeTarget "_idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min11.0" */; buildPhases = ( - 3E7AC1A6000000000000003C /* Sources */, + 3E7AC1A60000000000000039 /* Sources */, ); buildRules = ( ); @@ -1773,7 +1731,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F5F0E99D4C00000000 /* Build configuration list for PBXNativeTarget "_idx_gl_simple_shaders_2CB9CEAD_ios_min15.5" */; buildPhases = ( - 3E7AC1A60000000000000027 /* Sources */, + 3E7AC1A60000000000000026 /* Sources */, ); buildRules = ( ); @@ -1789,16 +1747,16 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F51CCE08FA00000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min15.5" */; buildPhases = ( - 3E7AC1A60000000000000012 /* Sources */, + 3E7AC1A60000000000000007 /* Sources */, ); buildRules = ( ); dependencies = ( C8719450B67384D100000000 /* PBXTargetDependency */, + C8719450507BECC700000000 /* PBXTargetDependency */, C8719450C4F8B64100000000 /* PBXTargetDependency */, C871945092DAA70B00000000 /* PBXTargetDependency */, C8719450395CFE5100000000 /* PBXTargetDependency */, - C8719450507BECC700000000 /* PBXTargetDependency */, ); name = _idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min15.5; productName = _idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min15.5; @@ -1809,14 +1767,14 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F540FA78C200000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_calculator_77E4634D_ios_min11.0" */; buildPhases = ( - 3E7AC1A6000000000000003A /* Sources */, + 3E7AC1A60000000000000038 /* Sources */, ); buildRules = ( ); dependencies = ( C8719450B67384D100000000 /* PBXTargetDependency */, - C8719450DCA2423700000000 /* PBXTargetDependency */, C871945016C7A06F00000000 /* PBXTargetDependency */, + C8719450DCA2423700000000 /* PBXTargetDependency */, ); name = _idx_image_to_tensor_calculator_77E4634D_ios_min11.0; productName = _idx_image_to_tensor_calculator_77E4634D_ios_min11.0; @@ -1827,7 +1785,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F5AFE1395B00000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_calculator_77E4634D_ios_min15.5" */; buildPhases = ( - 3E7AC1A6000000000000003D /* Sources */, + 3E7AC1A6000000000000003B /* Sources */, ); buildRules = ( ); @@ -1845,7 +1803,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F5B8217D6500000000 /* Build configuration list for PBXNativeTarget "_idx_begin_loop_calculator_55C0335F_ios_min15.5" */; buildPhases = ( - 3E7AC1A6000000000000002D /* Sources */, + 3E7AC1A6000000000000002B /* Sources */, ); buildRules = ( ); @@ -1861,7 +1819,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F53C8EC2F100000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_util_D57AACFF_ios_min15.5" */; buildPhases = ( - 3E7AC1A6000000000000000D /* Sources */, + 3E7AC1A60000000000000011 /* Sources */, ); buildRules = ( ); @@ -1877,18 +1835,18 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F50421972E00000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_op_resolver_E63A3714_ios_min11.0" */; buildPhases = ( - 3E7AC1A60000000000000030 /* Sources */, + 3E7AC1A6000000000000002E /* Sources */, ); buildRules = ( ); dependencies = ( C8719450B67384D100000000 /* PBXTargetDependency */, + C8719450C415A01D00000000 /* PBXTargetDependency */, C8719450F5035E2500000000 /* PBXTargetDependency */, + C8719450F5035E2500000000 /* PBXTargetDependency */, + C8719450F5035E2500000000 /* PBXTargetDependency */, + C8719450C415A01D00000000 /* PBXTargetDependency */, C871945052EE187D00000000 /* PBXTargetDependency */, - C8719450F5035E2500000000 /* PBXTargetDependency */, - C8719450C415A01D00000000 /* PBXTargetDependency */, - C8719450C415A01D00000000 /* PBXTargetDependency */, - C8719450F5035E2500000000 /* PBXTargetDependency */, ); name = _idx_cpu_op_resolver_E63A3714_ios_min11.0; productName = _idx_cpu_op_resolver_E63A3714_ios_min11.0; @@ -1899,17 +1857,17 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F52BE3F25400000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_op_resolver_E63A3714_ios_min15.5" */; buildPhases = ( - 3E7AC1A60000000000000034 /* Sources */, + 3E7AC1A60000000000000032 /* Sources */, ); buildRules = ( ); dependencies = ( C8719450B67384D100000000 /* PBXTargetDependency */, - C8719450D320929F00000000 /* PBXTargetDependency */, C871945095D3064100000000 /* PBXTargetDependency */, + C871945095D3064100000000 /* PBXTargetDependency */, + C8719450D320929F00000000 /* PBXTargetDependency */, + C8719450D320929F00000000 /* PBXTargetDependency */, C8719450600148FB00000000 /* PBXTargetDependency */, - C8719450D320929F00000000 /* PBXTargetDependency */, - C871945095D3064100000000 /* PBXTargetDependency */, C871945095D3064100000000 /* PBXTargetDependency */, ); name = _idx_cpu_op_resolver_E63A3714_ios_min15.5; @@ -1921,7 +1879,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F57A35429E00000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min15.5" */; buildPhases = ( - 3E7AC1A60000000000000011 /* Sources */, + 3E7AC1A6000000000000000B /* Sources */, ); buildRules = ( ); @@ -1937,19 +1895,19 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F5294E870200000000 /* Build configuration list for PBXNativeTarget "_idx_gl_calculator_helper_6AE62265_ios_min11.0" */; buildPhases = ( - 3E7AC1A60000000000000023 /* Sources */, + 3E7AC1A60000000000000022 /* Sources */, ); buildRules = ( ); dependencies = ( C8719450B67384D100000000 /* PBXTargetDependency */, - C8719450BAB5C57F00000000 /* PBXTargetDependency */, C87194509D198C3700000000 /* PBXTargetDependency */, + C871945060D0021D00000000 /* PBXTargetDependency */, + C8719450CB8F507D00000000 /* PBXTargetDependency */, + C871945060D0021D00000000 /* PBXTargetDependency */, + C8719450BAB5C57F00000000 /* PBXTargetDependency */, + C8719450CB8F507D00000000 /* PBXTargetDependency */, C8719450EEDCEF1900000000 /* PBXTargetDependency */, - C8719450CB8F507D00000000 /* PBXTargetDependency */, - C871945060D0021D00000000 /* PBXTargetDependency */, - C8719450CB8F507D00000000 /* PBXTargetDependency */, - C871945060D0021D00000000 /* PBXTargetDependency */, ); name = _idx_gl_calculator_helper_6AE62265_ios_min11.0; productName = _idx_gl_calculator_helper_6AE62265_ios_min11.0; @@ -1960,7 +1918,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F5842E851000000000 /* Build configuration list for PBXNativeTarget "_idx_split_vector_calculator_73890910_ios_min11.0" */; buildPhases = ( - 3E7AC1A60000000000000050 /* Sources */, + 3E7AC1A6000000000000004E /* Sources */, ); buildRules = ( ); @@ -1977,17 +1935,17 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F5C895ABFC00000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_overlay_calculator_7772C341_ios_min11.0" */; buildPhases = ( - 3E7AC1A60000000000000020 /* Sources */, + 3E7AC1A6000000000000001E /* Sources */, ); buildRules = ( ); dependencies = ( C8719450B67384D100000000 /* PBXTargetDependency */, + C8719450EEDCEF1900000000 /* PBXTargetDependency */, + C8719450CB8F507D00000000 /* PBXTargetDependency */, C8719450ACE90FE300000000 /* PBXTargetDependency */, C871945095AF928500000000 /* PBXTargetDependency */, C871945039FF367F00000000 /* PBXTargetDependency */, - C8719450EEDCEF1900000000 /* PBXTargetDependency */, - C8719450CB8F507D00000000 /* PBXTargetDependency */, ); name = _idx_annotation_overlay_calculator_7772C341_ios_min11.0; productName = _idx_annotation_overlay_calculator_7772C341_ios_min11.0; @@ -2014,46 +1972,28 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F5F41F3C3600000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_metal_65084AC7_ios_min15.5" */; buildPhases = ( - 3E7AC1A60000000000000049 /* Sources */, + 3E7AC1A60000000000000047 /* Sources */, ); buildRules = ( ); dependencies = ( C8719450B67384D100000000 /* PBXTargetDependency */, C8719450D3EB570900000000 /* PBXTargetDependency */, - C8719450CF5F5EE700000000 /* PBXTargetDependency */, - C87194508A94473900000000 /* PBXTargetDependency */, - C8719450C4F8B64100000000 /* PBXTargetDependency */, C8719450A5AC836500000000 /* PBXTargetDependency */, + C87194508A94473900000000 /* PBXTargetDependency */, + C8719450CF5F5EE700000000 /* PBXTargetDependency */, + C8719450C4F8B64100000000 /* PBXTargetDependency */, ); name = _idx_inference_calculator_metal_65084AC7_ios_min15.5; productName = _idx_inference_calculator_metal_65084AC7_ios_min15.5; productReference = 8F62469EFFA887E800000000 /* lib_idx_inference_calculator_metal_65084AC7_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - D50916B947A74E8C00000000 /* _idx_FaceMeshGPULibrary_61E6B091_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5D39116C600000000 /* Build configuration list for PBXNativeTarget "_idx_FaceMeshGPULibrary_61E6B091_ios_min15.5" */; - buildPhases = ( - 3E7AC1A6000000000000000B /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C8719450B474037D00000000 /* PBXTargetDependency */, - C87194505924467F00000000 /* PBXTargetDependency */, - ); - name = _idx_FaceMeshGPULibrary_61E6B091_ios_min15.5; - productName = _idx_FaceMeshGPULibrary_61E6B091_ios_min15.5; - productReference = 8F62469EBE46B07800000000 /* lib_idx_FaceMeshGPULibrary_61E6B091_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; D50916B94835E8D400000000 /* _idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min15.5 */ = { isa = PBXNativeTarget; buildConfigurationList = D31CF1F52A49F50200000000 /* Build configuration list for PBXNativeTarget "_idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min15.5" */; buildPhases = ( - 3E7AC1A6000000000000004F /* Sources */, + 3E7AC1A6000000000000004D /* Sources */, ); buildRules = ( ); @@ -2069,7 +2009,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F58846F13F00000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_renderer_1DCBFDF7_ios_min15.5" */; buildPhases = ( - 3E7AC1A6000000000000002B /* Sources */, + 3E7AC1A60000000000000027 /* Sources */, ); buildRules = ( ); @@ -2085,7 +2025,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F5AB45DADF00000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalHelper_8A6739B5_ios_min11.0" */; buildPhases = ( - 3E7AC1A60000000000000018 /* Sources */, + 3E7AC1A6000000000000000C /* Sources */, ); buildRules = ( ); @@ -2102,7 +2042,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F503CB892C00000000 /* Build configuration list for PBXNativeTarget "_idx_split_vector_calculator_73890910_ios_min15.5" */; buildPhases = ( - 3E7AC1A60000000000000051 /* Sources */, + 3E7AC1A6000000000000004F /* Sources */, ); buildRules = ( ); @@ -2119,7 +2059,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F5AC9881C700000000 /* Build configuration list for PBXNativeTarget "_idx_pixel_buffer_pool_util_C139F8B5_ios_min15.5" */; buildPhases = ( - 3E7AC1A6000000000000000E /* Sources */, + 3E7AC1A60000000000000008 /* Sources */, ); buildRules = ( ); @@ -2132,11 +2072,31 @@ productReference = 8F62469ED78C49CA00000000 /* lib_idx_pixel_buffer_pool_util_C139F8B5_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; + D50916B9519E3A1A00000000 /* _idx_core_84469CC7_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F59109BFFD00000000 /* Build configuration list for PBXNativeTarget "_idx_core_84469CC7_ios_min15.5" */; + buildPhases = ( + 3E7AC1A6000000000000001A /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + C8719450FD5CA03100000000 /* PBXTargetDependency */, + C8719450FD5CA03100000000 /* PBXTargetDependency */, + C8719450FD5CA03100000000 /* PBXTargetDependency */, + C8719450797718E700000000 /* PBXTargetDependency */, + ); + name = _idx_core_84469CC7_ios_min15.5; + productName = _idx_core_84469CC7_ios_min15.5; + productReference = 8F62469EF57314E600000000 /* lib_idx_core_84469CC7_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; D50916B952EE187C00000000 /* _idx_transpose_conv_bias_94247583_ios_min11.0 */ = { isa = PBXNativeTarget; buildConfigurationList = D31CF1F50FD9148A00000000 /* Build configuration list for PBXNativeTarget "_idx_transpose_conv_bias_94247583_ios_min11.0" */; buildPhases = ( - 3E7AC1A60000000000000032 /* Sources */, + 3E7AC1A60000000000000031 /* Sources */, ); buildRules = ( ); @@ -2152,15 +2112,15 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F584850D7B00000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_metal_A1DB3550_ios_min11.0" */; buildPhases = ( - 3E7AC1A60000000000000040 /* Sources */, + 3E7AC1A6000000000000003E /* Sources */, ); buildRules = ( ); dependencies = ( C8719450B67384D100000000 /* PBXTargetDependency */, + C871945016C7A06F00000000 /* PBXTargetDependency */, C8719450BAB5C57F00000000 /* PBXTargetDependency */, C87194504C962DED00000000 /* PBXTargetDependency */, - C871945016C7A06F00000000 /* PBXTargetDependency */, ); name = _idx_image_to_tensor_converter_metal_A1DB3550_ios_min11.0; productName = _idx_image_to_tensor_converter_metal_A1DB3550_ios_min11.0; @@ -2171,7 +2131,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F5260C68A100000000 /* Build configuration list for PBXNativeTarget "_idx_op_resolver_29CCF89E_ios_min11.0" */; buildPhases = ( - 3E7AC1A6000000000000004C /* Sources */, + 3E7AC1A6000000000000004A /* Sources */, ); buildRules = ( ); @@ -2187,7 +2147,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F55BE97ADA00000000 /* Build configuration list for PBXNativeTarget "_idx_detection_projection_calculator_07107D71_ios_min15.5" */; buildPhases = ( - 3E7AC1A60000000000000039 /* Sources */, + 3E7AC1A60000000000000037 /* Sources */, ); buildRules = ( ); @@ -2199,39 +2159,19 @@ productReference = 8F62469E3FF92D1600000000 /* lib_idx_detection_projection_calculator_07107D71_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - D50916B95924467E00000000 /* _idx_core_core-ios_731E135C_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F523E0E87900000000 /* Build configuration list for PBXNativeTarget "_idx_core_core-ios_731E135C_ios_min15.5" */; - buildPhases = ( - 3E7AC1A60000000000000013 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C8719450FD5CA03100000000 /* PBXTargetDependency */, - C8719450FD5CA03100000000 /* PBXTargetDependency */, - C8719450797718E700000000 /* PBXTargetDependency */, - C8719450FD5CA03100000000 /* PBXTargetDependency */, - ); - name = "_idx_core_core-ios_731E135C_ios_min15.5"; - productName = "_idx_core_core-ios_731E135C_ios_min15.5"; - productReference = 8F62469EDF10012C00000000 /* lib_idx_core_core-ios_731E135C_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; D50916B95B3B8F3E00000000 /* _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min15.5 */ = { isa = PBXNativeTarget; buildConfigurationList = D31CF1F5771C263400000000 /* Build configuration list for PBXNativeTarget "_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min15.5" */; buildPhases = ( - 3E7AC1A6000000000000005B /* Sources */, + 3E7AC1A60000000000000059 /* Sources */, ); buildRules = ( ); dependencies = ( C8719450B67384D100000000 /* PBXTargetDependency */, - C871945091B35B4700000000 /* PBXTargetDependency */, C87194504835E8D500000000 /* PBXTargetDependency */, C8719450BAEEE68700000000 /* PBXTargetDependency */, + C871945091B35B4700000000 /* PBXTargetDependency */, ); name = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min15.5; productName = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min15.5; @@ -2242,7 +2182,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F578F47AF400000000 /* Build configuration list for PBXNativeTarget "_idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min15.5" */; buildPhases = ( - 3E7AC1A6000000000000003F /* Sources */, + 3E7AC1A6000000000000003D /* Sources */, ); buildRules = ( ); @@ -2254,11 +2194,29 @@ productReference = 8F62469ED2C19F4E00000000 /* lib_idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; + D50916B95D81488E00000000 /* _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F52E13CF7C00000000 /* Build configuration list for PBXNativeTarget "_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min11.0" */; + buildPhases = ( + 3E7AC1A60000000000000014 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + C8719450DD40E3B300000000 /* PBXTargetDependency */, + C8719450D2C9CDB900000000 /* PBXTargetDependency */, + ); + name = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min11.0; + productName = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min11.0; + productReference = 8F62469ED3E77BD800000000 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; D50916B9600148FA00000000 /* _idx_transpose_conv_bias_94247583_ios_min15.5 */ = { isa = PBXNativeTarget; buildConfigurationList = D31CF1F5A67AB4C800000000 /* Build configuration list for PBXNativeTarget "_idx_transpose_conv_bias_94247583_ios_min15.5" */; buildPhases = ( - 3E7AC1A60000000000000037 /* Sources */, + 3E7AC1A60000000000000035 /* Sources */, ); buildRules = ( ); @@ -2274,16 +2232,16 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F5B769070700000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min11.0" */; buildPhases = ( - 3E7AC1A60000000000000004 /* Sources */, + 3E7AC1A60000000000000001 /* Sources */, ); buildRules = ( ); dependencies = ( C8719450B67384D100000000 /* PBXTargetDependency */, - C871945080FCD45900000000 /* PBXTargetDependency */, C8719450CB8F507D00000000 /* PBXTargetDependency */, C8719450BAB5C57F00000000 /* PBXTargetDependency */, C87194500A556C3100000000 /* PBXTargetDependency */, + C871945080FCD45900000000 /* PBXTargetDependency */, ); name = _idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min11.0; productName = _idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min11.0; @@ -2294,7 +2252,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F5862CD19300000000 /* Build configuration list for PBXNativeTarget "_idx_begin_loop_calculator_55C0335F_ios_min11.0" */; buildPhases = ( - 3E7AC1A6000000000000002C /* Sources */, + 3E7AC1A6000000000000002A /* Sources */, ); buildRules = ( ); @@ -2310,7 +2268,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F5240434D500000000 /* Build configuration list for PBXNativeTarget "_idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min11.0" */; buildPhases = ( - 3E7AC1A60000000000000009 /* Sources */, + 3E7AC1A60000000000000016 /* Sources */, ); buildRules = ( ); @@ -2322,11 +2280,29 @@ productReference = 8F62469EADA7E74800000000 /* lib_idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; + D50916B97190044400000000 /* _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F569831F3800000000 /* Build configuration list for PBXNativeTarget "_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min15.5" */; + buildPhases = ( + 3E7AC1A60000000000000019 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + C8719450519E3A1B00000000 /* PBXTargetDependency */, + C8719450B474037D00000000 /* PBXTargetDependency */, + ); + name = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min15.5; + productName = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min15.5; + productReference = 8F62469EBEF81DBA00000000 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; D50916B97245140600000000 /* _idx_detection_projection_calculator_07107D71_ios_min11.0 */ = { isa = PBXNativeTarget; buildConfigurationList = D31CF1F5F90A485C00000000 /* Build configuration list for PBXNativeTarget "_idx_detection_projection_calculator_07107D71_ios_min11.0" */; buildPhases = ( - 3E7AC1A60000000000000038 /* Sources */, + 3E7AC1A60000000000000036 /* Sources */, ); buildRules = ( ); @@ -2342,7 +2318,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F5CD20A9BC00000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min11.0" */; buildPhases = ( - 3E7AC1A60000000000000056 /* Sources */, + 3E7AC1A60000000000000054 /* Sources */, ); buildRules = ( ); @@ -2360,7 +2336,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F54D78F78700000000 /* Build configuration list for PBXNativeTarget "_idx_MPPGraphGPUData_DE328030_ios_min11.0" */; buildPhases = ( - 3E7AC1A60000000000000016 /* Sources */, + 3E7AC1A60000000000000000 /* Sources */, ); buildRules = ( ); @@ -2378,7 +2354,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F5108ED90400000000 /* Build configuration list for PBXNativeTarget "_idx_math_661952D5_ios_min15.5" */; buildPhases = ( - 3E7AC1A60000000000000015 /* Sources */, + 3E7AC1A6000000000000001C /* Sources */, ); buildRules = ( ); @@ -2394,7 +2370,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F53DC2F8BB00000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min15.5" */; buildPhases = ( - 3E7AC1A60000000000000059 /* Sources */, + 3E7AC1A60000000000000057 /* Sources */, ); buildRules = ( ); @@ -2410,7 +2386,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F52E2F18FB00000000 /* Build configuration list for PBXNativeTarget "_idx_clip_vector_size_calculator_B472A55B_ios_min11.0" */; buildPhases = ( - 3E7AC1A6000000000000002E /* Sources */, + 3E7AC1A6000000000000002C /* Sources */, ); buildRules = ( ); @@ -2426,7 +2402,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F5C0E3514600000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalUtil_622319D3_ios_min11.0" */; buildPhases = ( - 3E7AC1A6000000000000001C /* Sources */, + 3E7AC1A60000000000000012 /* Sources */, ); buildRules = ( ); @@ -2460,7 +2436,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F5584994EA00000000 /* Build configuration list for PBXNativeTarget "_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min11.0" */; buildPhases = ( - 3E7AC1A6000000000000005A /* Sources */, + 3E7AC1A60000000000000058 /* Sources */, ); buildRules = ( ); @@ -2479,7 +2455,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F5A618424C00000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalHelper_8A6739B5_ios_min15.5" */; buildPhases = ( - 3E7AC1A6000000000000001A /* Sources */, + 3E7AC1A6000000000000000F /* Sources */, ); buildRules = ( ); @@ -2496,7 +2472,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F50DE3243100000000 /* Build configuration list for PBXNativeTarget "_idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min11.0" */; buildPhases = ( - 3E7AC1A6000000000000004E /* Sources */, + 3E7AC1A6000000000000004C /* Sources */, ); buildRules = ( ); @@ -2512,7 +2488,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F54EEBF9AD00000000 /* Build configuration list for PBXNativeTarget "_idx_resource_util_0C14DDDC_ios_min11.0" */; buildPhases = ( - 3E7AC1A60000000000000044 /* Sources */, + 3E7AC1A60000000000000042 /* Sources */, ); buildRules = ( ); @@ -2534,13 +2510,13 @@ ); dependencies = ( C8719450B67384D100000000 /* PBXTargetDependency */, - C8719450395CFE5100000000 /* PBXTargetDependency */, + C8719450EC4DADE300000000 /* PBXTargetDependency */, + C87194501AFB53CB00000000 /* PBXTargetDependency */, C87194501AFB53CB00000000 /* PBXTargetDependency */, C8719450C4F8B64100000000 /* PBXTargetDependency */, - C87194501AFB53CB00000000 /* PBXTargetDependency */, + C8719450395CFE5100000000 /* PBXTargetDependency */, C8719450C4F8B64100000000 /* PBXTargetDependency */, C871945017CF694F00000000 /* PBXTargetDependency */, - C8719450EC4DADE300000000 /* PBXTargetDependency */, ); name = _idx_gl_calculator_helper_6AE62265_ios_min15.5; productName = _idx_gl_calculator_helper_6AE62265_ios_min15.5; @@ -2551,7 +2527,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F5D4B3E68C00000000 /* Build configuration list for PBXNativeTarget "_idx_util_66001351_ios_min15.5" */; buildPhases = ( - 3E7AC1A6000000000000000F /* Sources */, + 3E7AC1A60000000000000009 /* Sources */, ); buildRules = ( ); @@ -2567,7 +2543,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F5AF09680200000000 /* Build configuration list for PBXNativeTarget "_idx_gl_simple_shaders_2CB9CEAD_ios_min11.0" */; buildPhases = ( - 3E7AC1A60000000000000022 /* Sources */, + 3E7AC1A60000000000000021 /* Sources */, ); buildRules = ( ); @@ -2583,7 +2559,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F5D6C9910D00000000 /* Build configuration list for PBXNativeTarget "_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min15.5" */; buildPhases = ( - 3E7AC1A60000000000000036 /* Sources */, + 3E7AC1A60000000000000033 /* Sources */, ); buildRules = ( ); @@ -2599,15 +2575,15 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F5DBB222FF00000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_metal_A1DB3550_ios_min15.5" */; buildPhases = ( - 3E7AC1A60000000000000041 /* Sources */, + 3E7AC1A6000000000000003F /* Sources */, ); buildRules = ( ); dependencies = ( C8719450B67384D100000000 /* PBXTargetDependency */, + C8719450395CFE5100000000 /* PBXTargetDependency */, C87194508A94473900000000 /* PBXTargetDependency */, C87194505D80A99B00000000 /* PBXTargetDependency */, - C8719450395CFE5100000000 /* PBXTargetDependency */, ); name = _idx_image_to_tensor_converter_metal_A1DB3550_ios_min15.5; productName = _idx_image_to_tensor_converter_metal_A1DB3550_ios_min15.5; @@ -2618,7 +2594,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F5382419CD00000000 /* Build configuration list for PBXNativeTarget "_idx_MPPGraphGPUData_DE328030_ios_min15.5" */; buildPhases = ( - 3E7AC1A60000000000000017 /* Sources */, + 3E7AC1A60000000000000006 /* Sources */, ); buildRules = ( ); @@ -2636,7 +2612,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F5D433B4FA00000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min11.0" */; buildPhases = ( - 3E7AC1A60000000000000058 /* Sources */, + 3E7AC1A60000000000000056 /* Sources */, ); buildRules = ( ); @@ -2652,7 +2628,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F5EE7EDAB300000000 /* Build configuration list for PBXNativeTarget "_idx_image_properties_calculator_gpu_service_941BB6CA_ios_min11.0" */; buildPhases = ( - 3E7AC1A60000000000000024 /* Sources */, + 3E7AC1A60000000000000023 /* Sources */, ); buildRules = ( ); @@ -2669,7 +2645,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F5D6A89A3300000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalUtil_622319D3_ios_min15.5" */; buildPhases = ( - 3E7AC1A6000000000000001D /* Sources */, + 3E7AC1A60000000000000013 /* Sources */, ); buildRules = ( ); @@ -2686,7 +2662,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F55A1A765300000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_renderer_1DCBFDF7_ios_min11.0" */; buildPhases = ( - 3E7AC1A60000000000000021 /* Sources */, + 3E7AC1A60000000000000020 /* Sources */, ); buildRules = ( ); @@ -2702,17 +2678,17 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F5B359006A00000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_overlay_calculator_7772C341_ios_min15.5" */; buildPhases = ( - 3E7AC1A60000000000000026 /* Sources */, + 3E7AC1A60000000000000024 /* Sources */, ); buildRules = ( ); dependencies = ( C8719450B67384D100000000 /* PBXTargetDependency */, - C87194501918237700000000 /* PBXTargetDependency */, - C871945091B35B4700000000 /* PBXTargetDependency */, - C8719450EC4DADE300000000 /* PBXTargetDependency */, - C87194504A6C65DF00000000 /* PBXTargetDependency */, C8719450C4F8B64100000000 /* PBXTargetDependency */, + C8719450EC4DADE300000000 /* PBXTargetDependency */, + C87194501918237700000000 /* PBXTargetDependency */, + C87194504A6C65DF00000000 /* PBXTargetDependency */, + C871945091B35B4700000000 /* PBXTargetDependency */, ); name = _idx_annotation_overlay_calculator_7772C341_ios_min15.5; productName = _idx_annotation_overlay_calculator_7772C341_ios_min15.5; @@ -2723,16 +2699,16 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F5426068CB00000000 /* Build configuration list for PBXNativeTarget "_idx_olamodule_common_library_9ADAC3A9_ios_min15.5" */; buildPhases = ( - 3E7AC1A6000000000000000C /* Sources */, + 3E7AC1A6000000000000001D /* Sources */, ); buildRules = ( ); dependencies = ( C8719450B67384D100000000 /* PBXTargetDependency */, - C87194502FCF8C3F00000000 /* PBXTargetDependency */, C8719450507BECC700000000 /* PBXTargetDependency */, - C8719450C4F8B64100000000 /* PBXTargetDependency */, C871945092DAA70B00000000 /* PBXTargetDependency */, + C8719450C4F8B64100000000 /* PBXTargetDependency */, + C87194502FCF8C3F00000000 /* PBXTargetDependency */, ); name = _idx_olamodule_common_library_9ADAC3A9_ios_min15.5; productName = _idx_olamodule_common_library_9ADAC3A9_ios_min15.5; @@ -2743,7 +2719,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F57D6EEAA600000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_opencv_1FC75D94_ios_min15.5" */; buildPhases = ( - 3E7AC1A6000000000000003E /* Sources */, + 3E7AC1A6000000000000003C /* Sources */, ); buildRules = ( ); @@ -2760,7 +2736,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F5CB2C76A700000000 /* Build configuration list for PBXNativeTarget "_idx_clip_vector_size_calculator_B472A55B_ios_min15.5" */; buildPhases = ( - 3E7AC1A6000000000000002F /* Sources */, + 3E7AC1A6000000000000002D /* Sources */, ); buildRules = ( ); @@ -2776,7 +2752,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F585DB7B5E00000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min11.0" */; buildPhases = ( - 3E7AC1A60000000000000006 /* Sources */, + 3E7AC1A60000000000000003 /* Sources */, ); buildRules = ( ); @@ -2792,7 +2768,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F5BEDCDC1900000000 /* Build configuration list for PBXNativeTarget "_idx_resource_util_0C14DDDC_ios_min15.5" */; buildPhases = ( - 3E7AC1A60000000000000047 /* Sources */, + 3E7AC1A60000000000000045 /* Sources */, ); buildRules = ( ); @@ -2808,7 +2784,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F5F6AC550300000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_util_D57AACFF_ios_min11.0" */; buildPhases = ( - 3E7AC1A60000000000000007 /* Sources */, + 3E7AC1A6000000000000000E /* Sources */, ); buildRules = ( ); @@ -2824,7 +2800,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F5D6333A3300000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min15.5" */; buildPhases = ( - 3E7AC1A60000000000000055 /* Sources */, + 3E7AC1A60000000000000053 /* Sources */, ); buildRules = ( ); @@ -2840,7 +2816,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F5C2B47BB900000000 /* Build configuration list for PBXNativeTarget "_idx_max_unpooling_max_pool_argmax_09627F19_ios_min11.0" */; buildPhases = ( - 3E7AC1A60000000000000033 /* Sources */, + 3E7AC1A6000000000000002F /* Sources */, ); buildRules = ( ); @@ -2856,15 +2832,15 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F5563270AB00000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min15.5" */; buildPhases = ( - 3E7AC1A60000000000000010 /* Sources */, + 3E7AC1A6000000000000000A /* Sources */, ); buildRules = ( ); dependencies = ( C8719450B67384D100000000 /* PBXTargetDependency */, C8719450395CFE5100000000 /* PBXTargetDependency */, - C871945092DAA70B00000000 /* PBXTargetDependency */, C87194501AFB53CB00000000 /* PBXTargetDependency */, + C871945092DAA70B00000000 /* PBXTargetDependency */, C8719450395CFE5100000000 /* PBXTargetDependency */, ); name = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min15.5; @@ -2872,47 +2848,11 @@ productReference = 8F62469EB9DEA8D000000000 /* lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - D50916B9C6E1DE5800000000 /* _idx_OlaFaceUnityLibrary_63B2D14F_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5CE77D67600000000 /* Build configuration list for PBXNativeTarget "_idx_OlaFaceUnityLibrary_63B2D14F_ios_min11.0" */; - buildPhases = ( - 3E7AC1A6000000000000001E /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C87194500EBED90100000000 /* PBXTargetDependency */, - C8719450F4D779E300000000 /* PBXTargetDependency */, - ); - name = _idx_OlaFaceUnityLibrary_63B2D14F_ios_min11.0; - productName = _idx_OlaFaceUnityLibrary_63B2D14F_ios_min11.0; - productReference = 8F62469EDCE124F400000000 /* lib_idx_OlaFaceUnityLibrary_63B2D14F_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B9C90C1D2600000000 /* _idx_OlaFaceUnityLibrary_63B2D14F_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F52B54149500000000 /* Build configuration list for PBXNativeTarget "_idx_OlaFaceUnityLibrary_63B2D14F_ios_min15.5" */; - buildPhases = ( - 3E7AC1A6000000000000001F /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C87194505924467F00000000 /* PBXTargetDependency */, - C871945047A74E8D00000000 /* PBXTargetDependency */, - ); - name = _idx_OlaFaceUnityLibrary_63B2D14F_ios_min15.5; - productName = _idx_OlaFaceUnityLibrary_63B2D14F_ios_min15.5; - productReference = 8F62469E1E29E90E00000000 /* lib_idx_OlaFaceUnityLibrary_63B2D14F_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; D50916B9C9AA16CE00000000 /* _idx_non_max_suppression_calculator_E0C32C58_ios_min15.5 */ = { isa = PBXNativeTarget; buildConfigurationList = D31CF1F5FC74391300000000 /* Build configuration list for PBXNativeTarget "_idx_non_max_suppression_calculator_E0C32C58_ios_min15.5" */; buildPhases = ( - 3E7AC1A6000000000000004B /* Sources */, + 3E7AC1A60000000000000049 /* Sources */, ); buildRules = ( ); @@ -2928,16 +2868,16 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F5F0D47DA200000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min11.0" */; buildPhases = ( - 3E7AC1A60000000000000003 /* Sources */, + 3E7AC1A60000000000000002 /* Sources */, ); buildRules = ( ); dependencies = ( C8719450B67384D100000000 /* PBXTargetDependency */, + C8719450BAB5C57F00000000 /* PBXTargetDependency */, C871945060D0021D00000000 /* PBXTargetDependency */, - C8719450BAB5C57F00000000 /* PBXTargetDependency */, - C8719450BAB5C57F00000000 /* PBXTargetDependency */, C87194500A556C3100000000 /* PBXTargetDependency */, + C8719450BAB5C57F00000000 /* PBXTargetDependency */, ); name = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min11.0; productName = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min11.0; @@ -2948,17 +2888,17 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F5C0DCCE1E00000000 /* Build configuration list for PBXNativeTarget "_idx_mediapipe_framework_ios_596FA5D1_ios_min15.5" */; buildPhases = ( - 3E7AC1A6000000000000001B /* Sources */, + 3E7AC1A60000000000000010 /* Sources */, ); buildRules = ( ); dependencies = ( C8719450B67384D100000000 /* PBXTargetDependency */, - C871945092DAA70B00000000 /* PBXTargetDependency */, C8719450984088FD00000000 /* PBXTargetDependency */, - C87194502FCF8C3F00000000 /* PBXTargetDependency */, - C8719450507BECC700000000 /* PBXTargetDependency */, C8719450C4F8B64100000000 /* PBXTargetDependency */, + C87194502FCF8C3F00000000 /* PBXTargetDependency */, + C871945092DAA70B00000000 /* PBXTargetDependency */, + C8719450507BECC700000000 /* PBXTargetDependency */, ); name = _idx_mediapipe_framework_ios_596FA5D1_ios_min15.5; productName = _idx_mediapipe_framework_ios_596FA5D1_ios_min15.5; @@ -2969,7 +2909,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F5E5FE63D100000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min15.5" */; buildPhases = ( - 3E7AC1A60000000000000057 /* Sources */, + 3E7AC1A60000000000000055 /* Sources */, ); buildRules = ( ); @@ -2987,7 +2927,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F57AD665A800000000 /* Build configuration list for PBXNativeTarget "_idx_op_resolver_29CCF89E_ios_min15.5" */; buildPhases = ( - 3E7AC1A6000000000000004D /* Sources */, + 3E7AC1A6000000000000004B /* Sources */, ); buildRules = ( ); @@ -3003,16 +2943,16 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F5682B9BD300000000 /* Build configuration list for PBXNativeTarget "_idx_olamodule_common_library_9ADAC3A9_ios_min11.0" */; buildPhases = ( - 3E7AC1A60000000000000001 /* Sources */, + 3E7AC1A60000000000000018 /* Sources */, ); buildRules = ( ); dependencies = ( C8719450B67384D100000000 /* PBXTargetDependency */, C87194500A556C3100000000 /* PBXTargetDependency */, - C8719450CB8F507D00000000 /* PBXTargetDependency */, - C871945080FCD45900000000 /* PBXTargetDependency */, C8719450BCE0083900000000 /* PBXTargetDependency */, + C871945080FCD45900000000 /* PBXTargetDependency */, + C8719450CB8F507D00000000 /* PBXTargetDependency */, ); name = _idx_olamodule_common_library_9ADAC3A9_ios_min11.0; productName = _idx_olamodule_common_library_9ADAC3A9_ios_min11.0; @@ -3023,7 +2963,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F5B4E3FF4C00000000 /* Build configuration list for PBXNativeTarget "_idx_max_unpooling_max_pool_argmax_09627F19_ios_min15.5" */; buildPhases = ( - 3E7AC1A60000000000000035 /* Sources */, + 3E7AC1A60000000000000034 /* Sources */, ); buildRules = ( ); @@ -3039,14 +2979,14 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F507002AA600000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min15.5" */; buildPhases = ( - 3E7AC1A60000000000000045 /* Sources */, + 3E7AC1A60000000000000043 /* Sources */, ); buildRules = ( ); dependencies = ( C8719450B67384D100000000 /* PBXTargetDependency */, - C87194502FCF8C3F00000000 /* PBXTargetDependency */, C8719450E5D2ED5700000000 /* PBXTargetDependency */, + C87194502FCF8C3F00000000 /* PBXTargetDependency */, ); name = _idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min15.5; productName = _idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min15.5; @@ -3057,7 +2997,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F5C9D1E94200000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_opencv_1FC75D94_ios_min11.0" */; buildPhases = ( - 3E7AC1A6000000000000003B /* Sources */, + 3E7AC1A6000000000000003A /* Sources */, ); buildRules = ( ); @@ -3070,11 +3010,31 @@ productReference = 8F62469E5A86F8CA00000000 /* lib_idx_image_to_tensor_converter_opencv_1FC75D94_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; + D50916B9DD40E3B200000000 /* _idx_core_84469CC7_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D31CF1F51058894C00000000 /* Build configuration list for PBXNativeTarget "_idx_core_84469CC7_ios_min11.0" */; + buildPhases = ( + 3E7AC1A60000000000000015 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C8719450B67384D100000000 /* PBXTargetDependency */, + C87194506D62510500000000 /* PBXTargetDependency */, + C871945004A520C300000000 /* PBXTargetDependency */, + C87194506D62510500000000 /* PBXTargetDependency */, + C87194506D62510500000000 /* PBXTargetDependency */, + ); + name = _idx_core_84469CC7_ios_min11.0; + productName = _idx_core_84469CC7_ios_min11.0; + productReference = 8F62469E85C9056E00000000 /* lib_idx_core_84469CC7_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; D50916B9E5D2ED5600000000 /* _idx_tflite_model_loader_6F62D289_ios_min15.5 */ = { isa = PBXNativeTarget; buildConfigurationList = D31CF1F5B89761A500000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_loader_6F62D289_ios_min15.5" */; buildPhases = ( - 3E7AC1A60000000000000046 /* Sources */, + 3E7AC1A60000000000000044 /* Sources */, ); buildRules = ( ); @@ -3091,7 +3051,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F51D5FFF0A00000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_detections_calculator_B4C99DEA_ios_min15.5" */; buildPhases = ( - 3E7AC1A60000000000000053 /* Sources */, + 3E7AC1A60000000000000051 /* Sources */, ); buildRules = ( ); @@ -3107,7 +3067,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F5470F13F900000000 /* Build configuration list for PBXNativeTarget "_idx_non_max_suppression_calculator_E0C32C58_ios_min11.0" */; buildPhases = ( - 3E7AC1A6000000000000004A /* Sources */, + 3E7AC1A60000000000000048 /* Sources */, ); buildRules = ( ); @@ -3123,7 +3083,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F5F37A159900000000 /* Build configuration list for PBXNativeTarget "_idx_shader_util_209E4ED9_ios_min15.5" */; buildPhases = ( - 3E7AC1A6000000000000002A /* Sources */, + 3E7AC1A60000000000000025 /* Sources */, ); buildRules = ( ); @@ -3139,7 +3099,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F5A9FB717B00000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min11.0" */; buildPhases = ( - 3E7AC1A60000000000000054 /* Sources */, + 3E7AC1A60000000000000052 /* Sources */, ); buildRules = ( ); @@ -3155,7 +3115,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F5CDECDB0700000000 /* Build configuration list for PBXNativeTarget "_idx_shader_util_209E4ED9_ios_min11.0" */; buildPhases = ( - 3E7AC1A60000000000000025 /* Sources */, + 3E7AC1A6000000000000001F /* Sources */, ); buildRules = ( ); @@ -3167,29 +3127,11 @@ productReference = 8F62469EB31F330C00000000 /* lib_idx_shader_util_209E4ED9_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - D50916B9F4D779E200000000 /* _idx_FaceMeshGPULibrary_61E6B091_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F58394EFF100000000 /* Build configuration list for PBXNativeTarget "_idx_FaceMeshGPULibrary_61E6B091_ios_min11.0" */; - buildPhases = ( - 3E7AC1A60000000000000000 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C8719450D2C9CDB900000000 /* PBXTargetDependency */, - C87194500EBED90100000000 /* PBXTargetDependency */, - ); - name = _idx_FaceMeshGPULibrary_61E6B091_ios_min11.0; - productName = _idx_FaceMeshGPULibrary_61E6B091_ios_min11.0; - productReference = 8F62469E9FCBB85800000000 /* lib_idx_FaceMeshGPULibrary_61E6B091_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; D50916B9F5035E2400000000 /* _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min11.0 */ = { isa = PBXNativeTarget; buildConfigurationList = D31CF1F5D8B7B51300000000 /* Build configuration list for PBXNativeTarget "_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min11.0" */; buildPhases = ( - 3E7AC1A60000000000000031 /* Sources */, + 3E7AC1A60000000000000030 /* Sources */, ); buildRules = ( ); @@ -3221,17 +3163,17 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F567FA510300000000 /* Build configuration list for PBXNativeTarget "_idx_mediapipe_framework_ios_596FA5D1_ios_min11.0" */; buildPhases = ( - 3E7AC1A60000000000000019 /* Sources */, + 3E7AC1A6000000000000000D /* Sources */, ); buildRules = ( ); dependencies = ( C8719450B67384D100000000 /* PBXTargetDependency */, - C8719450BCE0083900000000 /* PBXTargetDependency */, - C87194500A556C3100000000 /* PBXTargetDependency */, C8719450CB8F507D00000000 /* PBXTargetDependency */, C871945080FCD45900000000 /* PBXTargetDependency */, + C8719450BCE0083900000000 /* PBXTargetDependency */, C871945079337D3300000000 /* PBXTargetDependency */, + C87194500A556C3100000000 /* PBXTargetDependency */, ); name = _idx_mediapipe_framework_ios_596FA5D1_ios_min11.0; productName = _idx_mediapipe_framework_ios_596FA5D1_ios_min11.0; @@ -3242,7 +3184,7 @@ isa = PBXNativeTarget; buildConfigurationList = D31CF1F5770790E400000000 /* Build configuration list for PBXNativeTarget "_idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min15.5" */; buildPhases = ( - 3E7AC1A60000000000000014 /* Sources */, + 3E7AC1A6000000000000001B /* Sources */, ); buildRules = ( ); @@ -3274,16 +3216,14 @@ targets = ( D50916B940C1AF2200000000 /* OlaFaceUnityFramework */, 281DB351B67384D000000000 /* _bazel_clean_ */, - D50916B9F4D779E200000000 /* _idx_FaceMeshGPULibrary_61E6B091_ios_min11.0 */, - D50916B947A74E8C00000000 /* _idx_FaceMeshGPULibrary_61E6B091_ios_min15.5 */, D50916B979337D3200000000 /* _idx_MPPGraphGPUData_DE328030_ios_min11.0 */, D50916B9984088FC00000000 /* _idx_MPPGraphGPUData_DE328030_ios_min15.5 */, D50916B94C962DEC00000000 /* _idx_MPPMetalHelper_8A6739B5_ios_min11.0 */, D50916B98A94473800000000 /* _idx_MPPMetalHelper_8A6739B5_ios_min15.5 */, D50916B97E562BDE00000000 /* _idx_MPPMetalUtil_622319D3_ios_min11.0 */, D50916B9A5AC836400000000 /* _idx_MPPMetalUtil_622319D3_ios_min15.5 */, - D50916B9C6E1DE5800000000 /* _idx_OlaFaceUnityLibrary_63B2D14F_ios_min11.0 */, - D50916B9C90C1D2600000000 /* _idx_OlaFaceUnityLibrary_63B2D14F_ios_min15.5 */, + D50916B95D81488E00000000 /* _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min11.0 */, + D50916B97190044400000000 /* _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min15.5 */, D50916B93DC5F44400000000 /* _idx_annotation_overlay_calculator_7772C341_ios_min11.0 */, D50916B9B1E8A01A00000000 /* _idx_annotation_overlay_calculator_7772C341_ios_min15.5 */, D50916B9ACE90FE200000000 /* _idx_annotation_renderer_1DCBFDF7_ios_min11.0 */, @@ -3292,8 +3232,8 @@ D50916B925AA7A6000000000 /* _idx_begin_loop_calculator_55C0335F_ios_min15.5 */, D50916B97A8A9E1600000000 /* _idx_clip_vector_size_calculator_B472A55B_ios_min11.0 */, D50916B9B897142A00000000 /* _idx_clip_vector_size_calculator_B472A55B_ios_min15.5 */, - D50916B90EBED90000000000 /* _idx_core_core-ios_731E135C_ios_min11.0 */, - D50916B95924467E00000000 /* _idx_core_core-ios_731E135C_ios_min15.5 */, + D50916B9DD40E3B200000000 /* _idx_core_84469CC7_ios_min11.0 */, + D50916B9519E3A1A00000000 /* _idx_core_84469CC7_ios_min15.5 */, D50916B932A4BF4A00000000 /* _idx_cpu_op_resolver_E63A3714_ios_min11.0 */, D50916B932AD902000000000 /* _idx_cpu_op_resolver_E63A3714_ios_min15.5 */, D50916B9BCE0083800000000 /* _idx_cpu_util_D57AACFF_ios_min11.0 */, @@ -3411,9 +3351,8 @@ isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC4CC6C91400000000 /* face_mesh_module.cc in beauty */, - 49B7A4FC8563DF9500000000 /* face_mesh_beauty_render.cc in beauty */, - 49B7A4FCA59EA68600000000 /* face_mesh_module_imp.cc in beauty */, + 49B7A4FCBA4BE9D200000000 /* MPPGraphGPUData.mm in gpu */, + 49B7A4FC8618537700000000 /* gpu_shared_data_internal.cc in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3421,19 +3360,13 @@ isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FCB288401C00000000 /* ola_graph.cc in common */, + 49B7A4FC2F39A2D500000000 /* gpu_buffer_multi_pool.cc in gpu */, + 49B7A4FCD11949C300000000 /* gl_context.cc in gpu */, + 49B7A4FC4AFAD92200000000 /* gl_context_eagl.cc in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; 3E7AC1A60000000000000002 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - 49B7A4FC4C094F0A00000000 /* util.cc in objc */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 3E7AC1A60000000000000003 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -3445,13 +3378,20 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 3E7AC1A60000000000000003 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + 49B7A4FC2E9744D600000000 /* gpu_buffer_storage.cc in gpu */, + 49B7A4FC92E2BF3700000000 /* gpu_buffer_format.cc in gpu */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 3E7AC1A60000000000000004 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC2F39A2D500000000 /* gpu_buffer_multi_pool.cc in gpu */, - 49B7A4FCD11949C300000000 /* gl_context.cc in gpu */, - 49B7A4FC4AFAD92200000000 /* gl_context_eagl.cc in gpu */, + 49B7A4FC4C094F0A00000000 /* util.cc in objc */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3467,8 +3407,8 @@ isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC2E9744D600000000 /* gpu_buffer_storage.cc in gpu */, - 49B7A4FC92E2BF3700000000 /* gpu_buffer_format.cc in gpu */, + 49B7A4FCBA4BE9D200000001 /* MPPGraphGPUData.mm in gpu */, + 49B7A4FC8618537700000001 /* gpu_shared_data_internal.cc in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3476,11 +3416,129 @@ isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC53F441A800000000 /* cpu_util.cc in util */, + 49B7A4FC2F39A2D500000001 /* gpu_buffer_multi_pool.cc in gpu */, + 49B7A4FCD11949C300000001 /* gl_context.cc in gpu */, + 49B7A4FC4AFAD92200000001 /* gl_context_eagl.cc in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; 3E7AC1A60000000000000008 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + 49B7A4FC357DD06500000001 /* pixel_buffer_pool_util.mm in gpu */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 3E7AC1A60000000000000009 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + 49B7A4FC4C094F0A00000001 /* util.cc in objc */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 3E7AC1A6000000000000000A /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + 49B7A4FC489C692A00000001 /* gpu_buffer_storage_cv_pixel_buffer.cc in gpu */, + 49B7A4FCA3E97E1400000001 /* gl_texture_buffer.cc in gpu */, + 49B7A4FCF51362E900000001 /* gl_texture_buffer_pool.cc in gpu */, + 49B7A4FCEA623A4800000001 /* gl_texture_view.cc in gpu */, + 49B7A4FC8EDC082600000001 /* gpu_buffer.cc in gpu */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 3E7AC1A6000000000000000B /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + 49B7A4FC2E9744D600000001 /* gpu_buffer_storage.cc in gpu */, + 49B7A4FC92E2BF3700000001 /* gpu_buffer_format.cc in gpu */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 3E7AC1A6000000000000000C /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + 49B7A4FC849B03E000000000 /* MPPMetalHelper.mm in gpu */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 3E7AC1A6000000000000000D /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + 49B7A4FCEEE7D66700000000 /* MPPGraph.mm in objc */, + 49B7A4FC48E4E18100000000 /* MPPTimestampConverter.mm in objc */, + 49B7A4FC998F8A2E00000000 /* NSError+util_status.mm in objc */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 3E7AC1A6000000000000000E /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + 49B7A4FC53F441A800000000 /* cpu_util.cc in util */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 3E7AC1A6000000000000000F /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + 49B7A4FC849B03E000000001 /* MPPMetalHelper.mm in gpu */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 3E7AC1A60000000000000010 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + 49B7A4FCEEE7D66700000001 /* MPPGraph.mm in objc */, + 49B7A4FC48E4E18100000001 /* MPPTimestampConverter.mm in objc */, + 49B7A4FC998F8A2E00000001 /* NSError+util_status.mm in objc */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 3E7AC1A60000000000000011 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + 49B7A4FC53F441A800000001 /* cpu_util.cc in util */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 3E7AC1A60000000000000012 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + 49B7A4FCFF18EE3C00000000 /* MPPMetalUtil.mm in gpu */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 3E7AC1A60000000000000013 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + 49B7A4FCFF18EE3C00000001 /* MPPMetalUtil.mm in gpu */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 3E7AC1A60000000000000014 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + 49B7A4FCF4C8279B00000000 /* OlaFaceUnity.mm in ios */, + 49B7A4FC4CC6C91400000000 /* face_mesh_module.cc in beauty */, + 49B7A4FC8563DF9500000000 /* face_mesh_beauty_render.cc in beauty */, + 49B7A4FCA59EA68600000000 /* face_mesh_module_imp.cc in beauty */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 3E7AC1A60000000000000015 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -3496,6 +3554,57 @@ 49B7A4FCA688677600000000 /* SourceCamera.cpp in core */, 49B7A4FCC7392BFD00000000 /* TargetView.cpp in core */, 49B7A4FC36A1BCF500000000 /* FilterGroup.cpp in core */, + 49B7A4FCFA8D3DEA00000000 /* dispatch_queue.cpp in core */, + 49B7A4FC99A1D41800000000 /* GLThreadDispatch.cpp in core */, + 49B7A4FCB8521D3400000000 /* OpipeDispatch.cpp in core */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 3E7AC1A60000000000000016 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + 49B7A4FCDBE5CD1B00000000 /* Ref.cpp in core */, + 49B7A4FC64A7F94D00000000 /* math.cpp in core */, + 49B7A4FC3950B88400000000 /* GPUImageUtil.cpp in core */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 3E7AC1A60000000000000017 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + 49B7A4FC0592E24D00000000 /* mat4.cpp in math */, + 49B7A4FCB1FDA98700000000 /* math_utils.cpp in math */, + 49B7A4FC0156E7A600000000 /* vec2.cpp in math */, + 49B7A4FC7FAD39F900000000 /* vec3.cpp in math */, + 49B7A4FC7A9963A400000000 /* vec4.cpp in math */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 3E7AC1A60000000000000018 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + 49B7A4FCB288401C00000000 /* ola_graph.cc in common */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 3E7AC1A60000000000000019 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + 49B7A4FCF4C8279B00000001 /* OlaFaceUnity.mm in ios */, + 49B7A4FC4CC6C91400000001 /* face_mesh_module.cc in beauty */, + 49B7A4FC8563DF9500000001 /* face_mesh_beauty_render.cc in beauty */, + 49B7A4FCA59EA68600000001 /* face_mesh_module_imp.cc in beauty */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 3E7AC1A6000000000000001A /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( 49B7A4FC42538A8300000001 /* FramebufferCache.cpp in core */, 49B7A4FC5771EFBD00000001 /* Framebuffer.cpp in core */, 49B7A4FC2E87CC4E00000001 /* Target.cpp in core */, @@ -3508,136 +3617,13 @@ 49B7A4FCA688677600000001 /* SourceCamera.cpp in core */, 49B7A4FCC7392BFD00000001 /* TargetView.cpp in core */, 49B7A4FC36A1BCF500000001 /* FilterGroup.cpp in core */, + 49B7A4FCFA8D3DEA00000001 /* dispatch_queue.cpp in core */, + 49B7A4FC99A1D41800000001 /* GLThreadDispatch.cpp in core */, + 49B7A4FCB8521D3400000001 /* OpipeDispatch.cpp in core */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000009 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - 49B7A4FCDBE5CD1B00000000 /* Ref.cpp in core */, - 49B7A4FC64A7F94D00000000 /* math.cpp in core */, - 49B7A4FC3950B88400000000 /* GPUImageUtil.cpp in core */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 3E7AC1A6000000000000000A /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - 49B7A4FC0592E24D00000000 /* mat4.cpp in math */, - 49B7A4FCB1FDA98700000000 /* math_utils.cpp in math */, - 49B7A4FC0156E7A600000000 /* vec2.cpp in math */, - 49B7A4FC7FAD39F900000000 /* vec3.cpp in math */, - 49B7A4FC7A9963A400000000 /* vec4.cpp in math */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 3E7AC1A6000000000000000B /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - 49B7A4FC4CC6C91400000001 /* face_mesh_module.cc in beauty */, - 49B7A4FC8563DF9500000001 /* face_mesh_beauty_render.cc in beauty */, - 49B7A4FCA59EA68600000001 /* face_mesh_module_imp.cc in beauty */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 3E7AC1A6000000000000000C /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - 49B7A4FCB288401C00000001 /* ola_graph.cc in common */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 3E7AC1A6000000000000000D /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - 49B7A4FC53F441A800000001 /* cpu_util.cc in util */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 3E7AC1A6000000000000000E /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - 49B7A4FC357DD06500000001 /* pixel_buffer_pool_util.mm in gpu */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 3E7AC1A6000000000000000F /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - 49B7A4FC4C094F0A00000001 /* util.cc in objc */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 3E7AC1A60000000000000010 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - 49B7A4FC489C692A00000001 /* gpu_buffer_storage_cv_pixel_buffer.cc in gpu */, - 49B7A4FCA3E97E1400000001 /* gl_texture_buffer.cc in gpu */, - 49B7A4FCF51362E900000001 /* gl_texture_buffer_pool.cc in gpu */, - 49B7A4FCEA623A4800000001 /* gl_texture_view.cc in gpu */, - 49B7A4FC8EDC082600000001 /* gpu_buffer.cc in gpu */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 3E7AC1A60000000000000011 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - 49B7A4FC2E9744D600000001 /* gpu_buffer_storage.cc in gpu */, - 49B7A4FC92E2BF3700000001 /* gpu_buffer_format.cc in gpu */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 3E7AC1A60000000000000012 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - 49B7A4FC2F39A2D500000001 /* gpu_buffer_multi_pool.cc in gpu */, - 49B7A4FCD11949C300000001 /* gl_context.cc in gpu */, - 49B7A4FC4AFAD92200000001 /* gl_context_eagl.cc in gpu */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 3E7AC1A60000000000000013 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - 49B7A4FC42538A8300000002 /* FramebufferCache.cpp in core */, - 49B7A4FC5771EFBD00000002 /* Framebuffer.cpp in core */, - 49B7A4FC2E87CC4E00000002 /* Target.cpp in core */, - 49B7A4FC6328969D00000002 /* Context.cpp in core */, - 49B7A4FC9A0C486600000002 /* Filter.cpp in core */, - 49B7A4FCD9FC1F1200000002 /* GLProgram.cpp in core */, - 49B7A4FC403A0ACA00000002 /* Source.cpp in core */, - 49B7A4FC4CCA495100000002 /* SourceImage.cpp in core */, - 49B7A4FCC345270B00000002 /* IOSTarget.cpp in core */, - 49B7A4FCA688677600000002 /* SourceCamera.cpp in core */, - 49B7A4FCC7392BFD00000002 /* TargetView.cpp in core */, - 49B7A4FC36A1BCF500000002 /* FilterGroup.cpp in core */, - 49B7A4FC42538A8300000003 /* FramebufferCache.cpp in core */, - 49B7A4FC5771EFBD00000003 /* Framebuffer.cpp in core */, - 49B7A4FC2E87CC4E00000003 /* Target.cpp in core */, - 49B7A4FC6328969D00000003 /* Context.cpp in core */, - 49B7A4FC9A0C486600000003 /* Filter.cpp in core */, - 49B7A4FCD9FC1F1200000003 /* GLProgram.cpp in core */, - 49B7A4FC403A0ACA00000003 /* Source.cpp in core */, - 49B7A4FC4CCA495100000003 /* SourceImage.cpp in core */, - 49B7A4FCC345270B00000003 /* IOSTarget.cpp in core */, - 49B7A4FCA688677600000003 /* SourceCamera.cpp in core */, - 49B7A4FCC7392BFD00000003 /* TargetView.cpp in core */, - 49B7A4FC36A1BCF500000003 /* FilterGroup.cpp in core */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 3E7AC1A60000000000000014 /* Sources */ = { + 3E7AC1A6000000000000001B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -3647,7 +3633,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000015 /* Sources */ = { + 3E7AC1A6000000000000001C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -3659,73 +3645,11 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000016 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - 49B7A4FCBA4BE9D200000000 /* MPPGraphGPUData.mm in gpu */, - 49B7A4FC8618537700000000 /* gpu_shared_data_internal.cc in gpu */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 3E7AC1A60000000000000017 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - 49B7A4FCBA4BE9D200000001 /* MPPGraphGPUData.mm in gpu */, - 49B7A4FC8618537700000001 /* gpu_shared_data_internal.cc in gpu */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 3E7AC1A60000000000000018 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - 49B7A4FC849B03E000000000 /* MPPMetalHelper.mm in gpu */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 3E7AC1A60000000000000019 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - 49B7A4FCEEE7D66700000000 /* MPPGraph.mm in objc */, - 49B7A4FC48E4E18100000000 /* MPPTimestampConverter.mm in objc */, - 49B7A4FC998F8A2E00000000 /* NSError+util_status.mm in objc */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 3E7AC1A6000000000000001A /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - 49B7A4FC849B03E000000001 /* MPPMetalHelper.mm in gpu */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 3E7AC1A6000000000000001B /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - 49B7A4FCEEE7D66700000001 /* MPPGraph.mm in objc */, - 49B7A4FC48E4E18100000001 /* MPPTimestampConverter.mm in objc */, - 49B7A4FC998F8A2E00000001 /* NSError+util_status.mm in objc */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 3E7AC1A6000000000000001C /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - 49B7A4FCFF18EE3C00000000 /* MPPMetalUtil.mm in gpu */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 3E7AC1A6000000000000001D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FCFF18EE3C00000001 /* MPPMetalUtil.mm in gpu */, + 49B7A4FCB288401C00000001 /* ola_graph.cc in common */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3733,7 +3657,7 @@ isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FCF4C8279B00000000 /* OlaFaceUnity.mm in ios */, + 49B7A4FC9E41D6ED00000000 /* annotation_overlay_calculator.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3741,7 +3665,7 @@ isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FCF4C8279B00000001 /* OlaFaceUnity.mm in ios */, + 49B7A4FC369A201C00000000 /* shader_util.cc in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3749,19 +3673,11 @@ isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC9E41D6ED00000000 /* annotation_overlay_calculator.cc in util */, + 49B7A4FC1E08E4F200000000 /* annotation_renderer.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; 3E7AC1A60000000000000021 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - 49B7A4FC1E08E4F200000000 /* annotation_renderer.cc in util */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 3E7AC1A60000000000000022 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -3769,7 +3685,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000023 /* Sources */ = { + 3E7AC1A60000000000000022 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -3778,7 +3694,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000024 /* Sources */ = { + 3E7AC1A60000000000000023 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -3787,15 +3703,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000025 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - 49B7A4FC369A201C00000000 /* shader_util.cc in gpu */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 3E7AC1A60000000000000026 /* Sources */ = { + 3E7AC1A60000000000000024 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -3803,7 +3711,15 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000027 /* Sources */ = { + 3E7AC1A60000000000000025 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + 49B7A4FC369A201C00000001 /* shader_util.cc in gpu */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 3E7AC1A60000000000000026 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -3811,6 +3727,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 3E7AC1A60000000000000027 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + 49B7A4FC1E08E4F200000001 /* annotation_renderer.cc in util */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 3E7AC1A60000000000000028 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; @@ -3833,7 +3757,7 @@ isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC369A201C00000001 /* shader_util.cc in gpu */, + 49B7A4FC7B0088E300000000 /* begin_loop_calculator.cc in core */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3841,7 +3765,7 @@ isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC1E08E4F200000001 /* annotation_renderer.cc in util */, + 49B7A4FC7B0088E300000001 /* begin_loop_calculator.cc in core */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3849,7 +3773,7 @@ isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC7B0088E300000000 /* begin_loop_calculator.cc in core */, + 49B7A4FC53BB6A1B00000000 /* clip_vector_size_calculator.cc in core */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3857,7 +3781,7 @@ isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC7B0088E300000001 /* begin_loop_calculator.cc in core */, + 49B7A4FC53BB6A1B00000001 /* clip_vector_size_calculator.cc in core */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3865,7 +3789,7 @@ isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC53BB6A1B00000000 /* clip_vector_size_calculator.cc in core */, + 49B7A4FC1370E16B00000000 /* cpu_op_resolver.cc in tflite */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3873,19 +3797,12 @@ isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC53BB6A1B00000001 /* clip_vector_size_calculator.cc in core */, + 49B7A4FCF18A35B600000000 /* max_unpooling.cc in operations */, + 49B7A4FCCDEAEE5C00000000 /* max_pool_argmax.cc in operations */, ); runOnlyForDeploymentPostprocessing = 0; }; 3E7AC1A60000000000000030 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - 49B7A4FC1370E16B00000000 /* cpu_op_resolver.cc in tflite */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 3E7AC1A60000000000000031 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -3895,7 +3812,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000032 /* Sources */ = { + 3E7AC1A60000000000000031 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -3903,16 +3820,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000033 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - 49B7A4FCF18A35B600000000 /* max_unpooling.cc in operations */, - 49B7A4FCCDEAEE5C00000000 /* max_pool_argmax.cc in operations */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 3E7AC1A60000000000000034 /* Sources */ = { + 3E7AC1A60000000000000032 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -3920,16 +3828,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000035 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - 49B7A4FCF18A35B600000001 /* max_unpooling.cc in operations */, - 49B7A4FCCDEAEE5C00000001 /* max_pool_argmax.cc in operations */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 3E7AC1A60000000000000036 /* Sources */ = { + 3E7AC1A60000000000000033 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -3939,7 +3838,16 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000037 /* Sources */ = { + 3E7AC1A60000000000000034 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + 49B7A4FCF18A35B600000001 /* max_unpooling.cc in operations */, + 49B7A4FCCDEAEE5C00000001 /* max_pool_argmax.cc in operations */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 3E7AC1A60000000000000035 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -3947,7 +3855,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000038 /* Sources */ = { + 3E7AC1A60000000000000036 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -3955,7 +3863,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000039 /* Sources */ = { + 3E7AC1A60000000000000037 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -3963,7 +3871,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A6000000000000003A /* Sources */ = { + 3E7AC1A60000000000000038 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -3971,15 +3879,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A6000000000000003B /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - 49B7A4FCF332D51F00000000 /* image_to_tensor_converter_opencv.cc in tensor */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 3E7AC1A6000000000000003C /* Sources */ = { + 3E7AC1A60000000000000039 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -3989,7 +3889,15 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A6000000000000003D /* Sources */ = { + 3E7AC1A6000000000000003A /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + 49B7A4FCF332D51F00000000 /* image_to_tensor_converter_opencv.cc in tensor */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 3E7AC1A6000000000000003B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -3997,7 +3905,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A6000000000000003E /* Sources */ = { + 3E7AC1A6000000000000003C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4005,7 +3913,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A6000000000000003F /* Sources */ = { + 3E7AC1A6000000000000003D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4015,7 +3923,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000040 /* Sources */ = { + 3E7AC1A6000000000000003E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4023,7 +3931,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000041 /* Sources */ = { + 3E7AC1A6000000000000003F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4031,7 +3939,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000042 /* Sources */ = { + 3E7AC1A60000000000000040 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4040,7 +3948,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000043 /* Sources */ = { + 3E7AC1A60000000000000041 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4048,7 +3956,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000044 /* Sources */ = { + 3E7AC1A60000000000000042 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4057,7 +3965,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000045 /* Sources */ = { + 3E7AC1A60000000000000043 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4066,7 +3974,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000046 /* Sources */ = { + 3E7AC1A60000000000000044 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4074,7 +3982,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000047 /* Sources */ = { + 3E7AC1A60000000000000045 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4083,7 +3991,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000048 /* Sources */ = { + 3E7AC1A60000000000000046 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4091,7 +3999,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000049 /* Sources */ = { + 3E7AC1A60000000000000047 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4099,7 +4007,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A6000000000000004A /* Sources */ = { + 3E7AC1A60000000000000048 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4107,7 +4015,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A6000000000000004B /* Sources */ = { + 3E7AC1A60000000000000049 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4115,7 +4023,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A6000000000000004C /* Sources */ = { + 3E7AC1A6000000000000004A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4123,7 +4031,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A6000000000000004D /* Sources */ = { + 3E7AC1A6000000000000004B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4131,7 +4039,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A6000000000000004E /* Sources */ = { + 3E7AC1A6000000000000004C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4140,7 +4048,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A6000000000000004F /* Sources */ = { + 3E7AC1A6000000000000004D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4149,7 +4057,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000050 /* Sources */ = { + 3E7AC1A6000000000000004E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4157,7 +4065,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000051 /* Sources */ = { + 3E7AC1A6000000000000004F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4165,7 +4073,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000052 /* Sources */ = { + 3E7AC1A60000000000000050 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4173,7 +4081,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000053 /* Sources */ = { + 3E7AC1A60000000000000051 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4181,7 +4089,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000054 /* Sources */ = { + 3E7AC1A60000000000000052 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4190,7 +4098,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000055 /* Sources */ = { + 3E7AC1A60000000000000053 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4199,7 +4107,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000056 /* Sources */ = { + 3E7AC1A60000000000000054 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4207,7 +4115,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000057 /* Sources */ = { + 3E7AC1A60000000000000055 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4215,7 +4123,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000058 /* Sources */ = { + 3E7AC1A60000000000000056 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4224,7 +4132,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000059 /* Sources */ = { + 3E7AC1A60000000000000057 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4233,7 +4141,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A6000000000000005A /* Sources */ = { + 3E7AC1A60000000000000058 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4259,7 +4167,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A6000000000000005B /* Sources */ = { + 3E7AC1A60000000000000059 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4300,10 +4208,6 @@ isa = PBXTargetDependency; targetProxy = 7571235F0B74D91900000000 /* PBXContainerItemProxy */; }; - C87194500EBED90100000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 7571235F0EBED90100000000 /* PBXContainerItemProxy */; - }; C871945014B7442B00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; targetProxy = 7571235F14B7442B00000000 /* PBXContainerItemProxy */; @@ -4344,10 +4248,6 @@ isa = PBXTargetDependency; targetProxy = 7571235F39FF367F00000000 /* PBXContainerItemProxy */; }; - C871945047A74E8D00000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 7571235F47A74E8D00000000 /* PBXContainerItemProxy */; - }; C87194504835E8D500000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; targetProxy = 7571235F4835E8D500000000 /* PBXContainerItemProxy */; @@ -4364,6 +4264,10 @@ isa = PBXTargetDependency; targetProxy = 7571235F507BECC700000000 /* PBXContainerItemProxy */; }; + C8719450519E3A1B00000000 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + targetProxy = 7571235F519E3A1B00000000 /* PBXContainerItemProxy */; + }; C871945052EE187D00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; targetProxy = 7571235F52EE187D00000000 /* PBXContainerItemProxy */; @@ -4372,10 +4276,6 @@ isa = PBXTargetDependency; targetProxy = 7571235F55AF4C6500000000 /* PBXContainerItemProxy */; }; - C87194505924467F00000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 7571235F5924467F00000000 /* PBXContainerItemProxy */; - }; C87194505D80A99B00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; targetProxy = 7571235F5D80A99B00000000 /* PBXContainerItemProxy */; @@ -4512,6 +4412,10 @@ isa = PBXTargetDependency; targetProxy = 7571235FDCA2423700000000 /* PBXContainerItemProxy */; }; + C8719450DD40E3B300000000 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + targetProxy = 7571235FDD40E3B300000000 /* PBXContainerItemProxy */; + }; C8719450E5D2ED5700000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; targetProxy = 7571235FE5D2ED5700000000 /* PBXContainerItemProxy */; @@ -4524,10 +4428,6 @@ isa = PBXTargetDependency; targetProxy = 7571235FEEDCEF1900000000 /* PBXContainerItemProxy */; }; - C8719450F4D779E300000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 7571235FF4D779E300000000 /* PBXContainerItemProxy */; - }; C8719450F5035E2500000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; targetProxy = 7571235FF5035E2500000000 /* PBXContainerItemProxy */; @@ -4695,12 +4595,11 @@ C75F0BC2D33FB0ED00000002 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_FaceMeshGPULibrary_61E6B091_ios_min11.0; + OTHER_CFLAGS = "-x objective-c++ -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_MPPGraphGPUData_DE328030_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -4710,29 +4609,16 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_olamodule_common_library_9ADAC3A9_ios_min11.0; + PRODUCT_NAME = _idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; C75F0BC2D33FB0ED00000004 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_util_66001351_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000005 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -4745,14 +4631,27 @@ }; name = Release; }; - C75F0BC2D33FB0ED00000006 /* Release */ = { + C75F0BC2D33FB0ED00000005 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C75F0BC2D33FB0ED00000006 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_util_66001351_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -4775,160 +4674,16 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min11.0; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-x objective-c++ -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_MPPGraphGPUData_DE328030_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; C75F0BC2D33FB0ED00000009 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_cpu_util_D57AACFF_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED0000000A /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = "_idx_core_core-ios_731E135C_ios_min11.0"; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED0000000B /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED0000000C /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_math_661952D5_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED0000000D /* 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 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_FaceMeshGPULibrary_61E6B091_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED0000000E /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_olamodule_common_library_9ADAC3A9_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED0000000F /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_cpu_util_D57AACFF_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000010 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_pixel_buffer_pool_util_C139F8B5_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000011 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_util_66001351_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000012 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000013 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000014 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -4941,72 +4696,59 @@ }; name = Release; }; - C75F0BC2D33FB0ED00000015 /* Release */ = { + C75F0BC2D33FB0ED0000000A /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = "_idx_core_core-ios_731E135C_ios_min15.5"; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000016 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min15.5; + PRODUCT_NAME = _idx_pixel_buffer_pool_util_C139F8B5_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C75F0BC2D33FB0ED00000017 /* Release */ = { + C75F0BC2D33FB0ED0000000B /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_math_661952D5_ios_min15.5; + PRODUCT_NAME = _idx_util_66001351_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C75F0BC2D33FB0ED00000018 /* Release */ = { + C75F0BC2D33FB0ED0000000C /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_MPPGraphGPUData_DE328030_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000019 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_MPPGraphGPUData_DE328030_ios_min15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C75F0BC2D33FB0ED0000001A /* Release */ = { + C75F0BC2D33FB0ED0000000D /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C75F0BC2D33FB0ED0000000E /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -5019,7 +4761,7 @@ }; name = Release; }; - C75F0BC2D33FB0ED0000001B /* Release */ = { + C75F0BC2D33FB0ED0000000F /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -5032,7 +4774,20 @@ }; name = Release; }; - C75F0BC2D33FB0ED0000001C /* Release */ = { + C75F0BC2D33FB0ED00000010 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_cpu_util_D57AACFF_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C75F0BC2D33FB0ED00000011 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -5045,7 +4800,7 @@ }; name = Release; }; - C75F0BC2D33FB0ED0000001D /* Release */ = { + C75F0BC2D33FB0ED00000012 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -5058,7 +4813,20 @@ }; name = Release; }; - C75F0BC2D33FB0ED0000001E /* Release */ = { + C75F0BC2D33FB0ED00000013 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_cpu_util_D57AACFF_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C75F0BC2D33FB0ED00000014 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -5071,7 +4839,7 @@ }; name = Release; }; - C75F0BC2D33FB0ED0000001F /* Release */ = { + C75F0BC2D33FB0ED00000015 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -5084,35 +4852,139 @@ }; name = Release; }; - C75F0BC2D33FB0ED00000020 /* Release */ = { + C75F0BC2D33FB0ED00000016 /* 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_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_OlaFaceUnityLibrary_63B2D14F_ios_min11.0; + PRODUCT_NAME = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C75F0BC2D33FB0ED00000021 /* Release */ = { + C75F0BC2D33FB0ED00000017 /* 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 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_core_84469CC7_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C75F0BC2D33FB0ED00000018 /* 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 = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C75F0BC2D33FB0ED00000019 /* 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 = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_math_661952D5_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C75F0BC2D33FB0ED0000001A /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_olamodule_common_library_9ADAC3A9_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C75F0BC2D33FB0ED0000001B /* 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_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_OlaFaceUnityLibrary_63B2D14F_ios_min15.5; + PRODUCT_NAME = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C75F0BC2D33FB0ED00000022 /* Release */ = { + C75F0BC2D33FB0ED0000001C /* 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 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_core_84469CC7_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C75F0BC2D33FB0ED0000001D /* 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 = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C75F0BC2D33FB0ED0000001E /* 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 = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_math_661952D5_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C75F0BC2D33FB0ED0000001F /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_olamodule_common_library_9ADAC3A9_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C75F0BC2D33FB0ED00000020 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -5126,7 +4998,20 @@ }; name = Release; }; - C75F0BC2D33FB0ED00000023 /* Release */ = { + C75F0BC2D33FB0ED00000021 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_shader_util_209E4ED9_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C75F0BC2D33FB0ED00000022 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -5140,7 +5025,7 @@ }; name = Release; }; - C75F0BC2D33FB0ED00000024 /* Release */ = { + C75F0BC2D33FB0ED00000023 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -5153,7 +5038,7 @@ }; name = Release; }; - C75F0BC2D33FB0ED00000025 /* Release */ = { + C75F0BC2D33FB0ED00000024 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -5166,7 +5051,7 @@ }; name = Release; }; - C75F0BC2D33FB0ED00000026 /* Release */ = { + C75F0BC2D33FB0ED00000025 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -5179,20 +5064,7 @@ }; name = Release; }; - C75F0BC2D33FB0ED00000027 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_shader_util_209E4ED9_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000028 /* Release */ = { + C75F0BC2D33FB0ED00000026 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -5206,7 +5078,20 @@ }; name = Release; }; - C75F0BC2D33FB0ED00000029 /* Release */ = { + C75F0BC2D33FB0ED00000027 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_shader_util_209E4ED9_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C75F0BC2D33FB0ED00000028 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -5219,6 +5104,20 @@ }; name = Release; }; + C75F0BC2D33FB0ED00000029 /* 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 = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_annotation_renderer_1DCBFDF7_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; C75F0BC2D33FB0ED0000002A /* Release */ = { isa = XCBuildConfiguration; buildSettings = { @@ -5246,33 +5145,6 @@ name = Release; }; C75F0BC2D33FB0ED0000002C /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_shader_util_209E4ED9_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED0000002D /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_annotation_renderer_1DCBFDF7_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED0000002E /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -5285,7 +5157,7 @@ }; name = Release; }; - C75F0BC2D33FB0ED0000002F /* Release */ = { + C75F0BC2D33FB0ED0000002D /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -5298,7 +5170,7 @@ }; name = Release; }; - C75F0BC2D33FB0ED00000030 /* Release */ = { + C75F0BC2D33FB0ED0000002E /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -5311,7 +5183,7 @@ }; name = Release; }; - C75F0BC2D33FB0ED00000031 /* Release */ = { + C75F0BC2D33FB0ED0000002F /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -5324,7 +5196,7 @@ }; name = Release; }; - C75F0BC2D33FB0ED00000032 /* Release */ = { + C75F0BC2D33FB0ED00000030 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -5337,33 +5209,7 @@ }; name = Release; }; - C75F0BC2D33FB0ED00000033 /* 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 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000034 /* 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 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_transpose_conv_bias_94247583_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000035 /* Release */ = { + C75F0BC2D33FB0ED00000031 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -5376,7 +5222,33 @@ }; name = Release; }; - C75F0BC2D33FB0ED00000036 /* Release */ = { + C75F0BC2D33FB0ED00000032 /* 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 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C75F0BC2D33FB0ED00000033 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_transpose_conv_bias_94247583_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C75F0BC2D33FB0ED00000034 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -5389,20 +5261,7 @@ }; name = Release; }; - C75F0BC2D33FB0ED00000037 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_max_unpooling_max_pool_argmax_09627F19_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000038 /* Release */ = { + C75F0BC2D33FB0ED00000035 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -5415,7 +5274,20 @@ }; name = Release; }; - C75F0BC2D33FB0ED00000039 /* Release */ = { + C75F0BC2D33FB0ED00000036 /* 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 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_max_unpooling_max_pool_argmax_09627F19_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C75F0BC2D33FB0ED00000037 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -5428,7 +5300,7 @@ }; name = Release; }; - C75F0BC2D33FB0ED0000003A /* Release */ = { + C75F0BC2D33FB0ED00000038 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -5442,7 +5314,7 @@ }; name = Release; }; - C75F0BC2D33FB0ED0000003B /* Release */ = { + C75F0BC2D33FB0ED00000039 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -5456,7 +5328,7 @@ }; name = Release; }; - C75F0BC2D33FB0ED0000003C /* Release */ = { + C75F0BC2D33FB0ED0000003A /* Release */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -5470,7 +5342,20 @@ }; name = Release; }; - C75F0BC2D33FB0ED0000003D /* Release */ = { + C75F0BC2D33FB0ED0000003B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C75F0BC2D33FB0ED0000003C /* Release */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -5484,20 +5369,7 @@ }; name = Release; }; - C75F0BC2D33FB0ED0000003E /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED0000003F /* Release */ = { + C75F0BC2D33FB0ED0000003D /* Release */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -5511,7 +5383,7 @@ }; name = Release; }; - C75F0BC2D33FB0ED00000040 /* Release */ = { + C75F0BC2D33FB0ED0000003E /* Release */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -5525,7 +5397,7 @@ }; name = Release; }; - C75F0BC2D33FB0ED00000041 /* Release */ = { + C75F0BC2D33FB0ED0000003F /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -5538,7 +5410,7 @@ }; name = Release; }; - C75F0BC2D33FB0ED00000042 /* Release */ = { + C75F0BC2D33FB0ED00000040 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -5551,7 +5423,7 @@ }; name = Release; }; - C75F0BC2D33FB0ED00000043 /* Release */ = { + C75F0BC2D33FB0ED00000041 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -5564,7 +5436,7 @@ }; name = Release; }; - C75F0BC2D33FB0ED00000044 /* Release */ = { + C75F0BC2D33FB0ED00000042 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -5577,7 +5449,7 @@ }; name = Release; }; - C75F0BC2D33FB0ED00000045 /* Release */ = { + C75F0BC2D33FB0ED00000043 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -5590,7 +5462,7 @@ }; name = Release; }; - C75F0BC2D33FB0ED00000046 /* Release */ = { + C75F0BC2D33FB0ED00000044 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -5603,7 +5475,7 @@ }; name = Release; }; - C75F0BC2D33FB0ED00000047 /* Release */ = { + C75F0BC2D33FB0ED00000045 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -5616,7 +5488,7 @@ }; name = Release; }; - C75F0BC2D33FB0ED00000048 /* Release */ = { + C75F0BC2D33FB0ED00000046 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -5629,7 +5501,7 @@ }; name = Release; }; - C75F0BC2D33FB0ED00000049 /* Release */ = { + C75F0BC2D33FB0ED00000047 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -5642,7 +5514,7 @@ }; name = Release; }; - C75F0BC2D33FB0ED0000004A /* Release */ = { + C75F0BC2D33FB0ED00000048 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -5655,7 +5527,7 @@ }; name = Release; }; - C75F0BC2D33FB0ED0000004B /* Release */ = { + C75F0BC2D33FB0ED00000049 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -5668,7 +5540,7 @@ }; name = Release; }; - C75F0BC2D33FB0ED0000004C /* Release */ = { + C75F0BC2D33FB0ED0000004A /* Release */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -5682,7 +5554,7 @@ }; name = Release; }; - C75F0BC2D33FB0ED0000004D /* Release */ = { + C75F0BC2D33FB0ED0000004B /* Release */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -5696,7 +5568,7 @@ }; name = Release; }; - C75F0BC2D33FB0ED0000004E /* Release */ = { + C75F0BC2D33FB0ED0000004C /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -5709,7 +5581,7 @@ }; name = Release; }; - C75F0BC2D33FB0ED0000004F /* Release */ = { + C75F0BC2D33FB0ED0000004D /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -5722,7 +5594,7 @@ }; name = Release; }; - C75F0BC2D33FB0ED00000050 /* Release */ = { + C75F0BC2D33FB0ED0000004E /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -5735,7 +5607,7 @@ }; name = Release; }; - C75F0BC2D33FB0ED00000051 /* Release */ = { + C75F0BC2D33FB0ED0000004F /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -5748,7 +5620,7 @@ }; name = Release; }; - C75F0BC2D33FB0ED00000052 /* Release */ = { + C75F0BC2D33FB0ED00000050 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -5761,7 +5633,7 @@ }; name = Release; }; - C75F0BC2D33FB0ED00000053 /* Release */ = { + C75F0BC2D33FB0ED00000051 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -5774,7 +5646,7 @@ }; name = Release; }; - C75F0BC2D33FB0ED00000054 /* Release */ = { + C75F0BC2D33FB0ED00000052 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -5788,7 +5660,7 @@ }; name = Release; }; - C75F0BC2D33FB0ED00000055 /* Release */ = { + C75F0BC2D33FB0ED00000053 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -5802,7 +5674,7 @@ }; name = Release; }; - C75F0BC2D33FB0ED00000056 /* Release */ = { + C75F0BC2D33FB0ED00000054 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -5815,7 +5687,7 @@ }; name = Release; }; - C75F0BC2D33FB0ED00000057 /* Release */ = { + C75F0BC2D33FB0ED00000055 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -5828,7 +5700,7 @@ }; name = Release; }; - C75F0BC2D33FB0ED00000058 /* Release */ = { + C75F0BC2D33FB0ED00000056 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -5841,7 +5713,7 @@ }; name = Release; }; - C75F0BC2D33FB0ED00000059 /* Release */ = { + C75F0BC2D33FB0ED00000057 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -5854,7 +5726,7 @@ }; name = Release; }; - C75F0BC2D33FB0ED0000005A /* Release */ = { + C75F0BC2D33FB0ED00000058 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -5867,7 +5739,7 @@ }; name = Release; }; - C75F0BC2D33FB0ED0000005B /* Release */ = { + C75F0BC2D33FB0ED00000059 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -5880,7 +5752,7 @@ }; name = Release; }; - C75F0BC2D33FB0ED0000005C /* Release */ = { + C75F0BC2D33FB0ED0000005A /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -5893,7 +5765,7 @@ }; name = Release; }; - C75F0BC2D33FB0ED0000005D /* Release */ = { + C75F0BC2D33FB0ED0000005B /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -5906,7 +5778,7 @@ }; name = Release; }; - C75F0BC2D33FB0ED0000005E /* Release */ = { + C75F0BC2D33FB0ED0000005C /* Release */ = { isa = XCBuildConfiguration; buildSettings = { ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = "Stub Launch Image"; @@ -5981,12 +5853,11 @@ C75F0BC2D434672300000002 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_FaceMeshGPULibrary_61E6B091_ios_min11.0; + OTHER_CFLAGS = "-x objective-c++ -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_MPPGraphGPUData_DE328030_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -5996,29 +5867,16 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_olamodule_common_library_9ADAC3A9_ios_min11.0; + PRODUCT_NAME = _idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; C75F0BC2D434672300000004 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_util_66001351_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C75F0BC2D434672300000005 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -6031,14 +5889,27 @@ }; name = Debug; }; - C75F0BC2D434672300000006 /* Debug */ = { + C75F0BC2D434672300000005 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000006 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_util_66001351_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -6061,160 +5932,16 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min11.0; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-x objective-c++ -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_MPPGraphGPUData_DE328030_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; C75F0BC2D434672300000009 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_cpu_util_D57AACFF_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C75F0BC2D43467230000000A /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = "_idx_core_core-ios_731E135C_ios_min11.0"; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C75F0BC2D43467230000000B /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C75F0BC2D43467230000000C /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_math_661952D5_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C75F0BC2D43467230000000D /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_FaceMeshGPULibrary_61E6B091_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C75F0BC2D43467230000000E /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_olamodule_common_library_9ADAC3A9_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C75F0BC2D43467230000000F /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_cpu_util_D57AACFF_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C75F0BC2D434672300000010 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_pixel_buffer_pool_util_C139F8B5_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C75F0BC2D434672300000011 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_util_66001351_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C75F0BC2D434672300000012 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C75F0BC2D434672300000013 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C75F0BC2D434672300000014 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -6227,72 +5954,59 @@ }; name = Debug; }; - C75F0BC2D434672300000015 /* Debug */ = { + C75F0BC2D43467230000000A /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = "_idx_core_core-ios_731E135C_ios_min15.5"; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C75F0BC2D434672300000016 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min15.5; + PRODUCT_NAME = _idx_pixel_buffer_pool_util_C139F8B5_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D434672300000017 /* Debug */ = { + C75F0BC2D43467230000000B /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_math_661952D5_ios_min15.5; + PRODUCT_NAME = _idx_util_66001351_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D434672300000018 /* Debug */ = { + C75F0BC2D43467230000000C /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_MPPGraphGPUData_DE328030_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C75F0BC2D434672300000019 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_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++ -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_MPPGraphGPUData_DE328030_ios_min15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D43467230000001A /* Debug */ = { + C75F0BC2D43467230000000D /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D43467230000000E /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -6305,7 +6019,7 @@ }; name = Debug; }; - C75F0BC2D43467230000001B /* Debug */ = { + C75F0BC2D43467230000000F /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -6318,7 +6032,20 @@ }; name = Debug; }; - C75F0BC2D43467230000001C /* Debug */ = { + C75F0BC2D434672300000010 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_cpu_util_D57AACFF_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000011 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -6331,7 +6058,7 @@ }; name = Debug; }; - C75F0BC2D43467230000001D /* Debug */ = { + C75F0BC2D434672300000012 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -6344,7 +6071,20 @@ }; name = Debug; }; - C75F0BC2D43467230000001E /* Debug */ = { + C75F0BC2D434672300000013 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_cpu_util_D57AACFF_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000014 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -6357,7 +6097,7 @@ }; name = Debug; }; - C75F0BC2D43467230000001F /* Debug */ = { + C75F0BC2D434672300000015 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -6370,35 +6110,139 @@ }; name = Debug; }; - C75F0BC2D434672300000020 /* Debug */ = { + C75F0BC2D434672300000016 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_OlaFaceUnityLibrary_63B2D14F_ios_min11.0; + PRODUCT_NAME = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D434672300000021 /* Debug */ = { + C75F0BC2D434672300000017 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_core_84469CC7_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000018 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000019 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_math_661952D5_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D43467230000001A /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_olamodule_common_library_9ADAC3A9_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D43467230000001B /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_OlaFaceUnityLibrary_63B2D14F_ios_min15.5; + PRODUCT_NAME = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D434672300000022 /* Debug */ = { + C75F0BC2D43467230000001C /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_core_84469CC7_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D43467230000001D /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D43467230000001E /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_math_661952D5_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D43467230000001F /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_olamodule_common_library_9ADAC3A9_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000020 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -6412,7 +6256,20 @@ }; name = Debug; }; - C75F0BC2D434672300000023 /* Debug */ = { + C75F0BC2D434672300000021 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_shader_util_209E4ED9_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000022 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -6426,7 +6283,7 @@ }; name = Debug; }; - C75F0BC2D434672300000024 /* Debug */ = { + C75F0BC2D434672300000023 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -6439,7 +6296,7 @@ }; name = Debug; }; - C75F0BC2D434672300000025 /* Debug */ = { + C75F0BC2D434672300000024 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -6452,7 +6309,7 @@ }; name = Debug; }; - C75F0BC2D434672300000026 /* Debug */ = { + C75F0BC2D434672300000025 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -6465,20 +6322,7 @@ }; name = Debug; }; - C75F0BC2D434672300000027 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_shader_util_209E4ED9_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C75F0BC2D434672300000028 /* Debug */ = { + C75F0BC2D434672300000026 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -6492,7 +6336,20 @@ }; name = Debug; }; - C75F0BC2D434672300000029 /* Debug */ = { + C75F0BC2D434672300000027 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_shader_util_209E4ED9_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000028 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -6505,6 +6362,20 @@ }; name = Debug; }; + C75F0BC2D434672300000029 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_annotation_renderer_1DCBFDF7_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; C75F0BC2D43467230000002A /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { @@ -6532,33 +6403,6 @@ name = Debug; }; C75F0BC2D43467230000002C /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_shader_util_209E4ED9_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C75F0BC2D43467230000002D /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_annotation_renderer_1DCBFDF7_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C75F0BC2D43467230000002E /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -6571,7 +6415,7 @@ }; name = Debug; }; - C75F0BC2D43467230000002F /* Debug */ = { + C75F0BC2D43467230000002D /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -6584,7 +6428,7 @@ }; name = Debug; }; - C75F0BC2D434672300000030 /* Debug */ = { + C75F0BC2D43467230000002E /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -6597,7 +6441,7 @@ }; name = Debug; }; - C75F0BC2D434672300000031 /* Debug */ = { + C75F0BC2D43467230000002F /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -6610,7 +6454,7 @@ }; name = Debug; }; - C75F0BC2D434672300000032 /* Debug */ = { + C75F0BC2D434672300000030 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -6623,33 +6467,7 @@ }; name = Debug; }; - C75F0BC2D434672300000033 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C75F0BC2D434672300000034 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_transpose_conv_bias_94247583_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C75F0BC2D434672300000035 /* Debug */ = { + C75F0BC2D434672300000031 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -6662,7 +6480,33 @@ }; name = Debug; }; - C75F0BC2D434672300000036 /* Debug */ = { + C75F0BC2D434672300000032 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000033 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_transpose_conv_bias_94247583_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000034 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -6675,20 +6519,7 @@ }; name = Debug; }; - C75F0BC2D434672300000037 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_max_unpooling_max_pool_argmax_09627F19_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C75F0BC2D434672300000038 /* Debug */ = { + C75F0BC2D434672300000035 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -6701,7 +6532,20 @@ }; name = Debug; }; - C75F0BC2D434672300000039 /* Debug */ = { + C75F0BC2D434672300000036 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_max_unpooling_max_pool_argmax_09627F19_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D434672300000037 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -6714,7 +6558,7 @@ }; name = Debug; }; - C75F0BC2D43467230000003A /* Debug */ = { + C75F0BC2D434672300000038 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -6728,7 +6572,7 @@ }; name = Debug; }; - C75F0BC2D43467230000003B /* Debug */ = { + C75F0BC2D434672300000039 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -6742,7 +6586,7 @@ }; name = Debug; }; - C75F0BC2D43467230000003C /* Debug */ = { + C75F0BC2D43467230000003A /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -6756,7 +6600,20 @@ }; name = Debug; }; - C75F0BC2D43467230000003D /* Debug */ = { + C75F0BC2D43467230000003B /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C75F0BC2D43467230000003C /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -6770,20 +6627,7 @@ }; name = Debug; }; - C75F0BC2D43467230000003E /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C75F0BC2D43467230000003F /* Debug */ = { + C75F0BC2D43467230000003D /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -6797,7 +6641,7 @@ }; name = Debug; }; - C75F0BC2D434672300000040 /* Debug */ = { + C75F0BC2D43467230000003E /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -6811,7 +6655,7 @@ }; name = Debug; }; - C75F0BC2D434672300000041 /* Debug */ = { + C75F0BC2D43467230000003F /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -6824,7 +6668,7 @@ }; name = Debug; }; - C75F0BC2D434672300000042 /* Debug */ = { + C75F0BC2D434672300000040 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -6837,7 +6681,7 @@ }; name = Debug; }; - C75F0BC2D434672300000043 /* Debug */ = { + C75F0BC2D434672300000041 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -6850,7 +6694,7 @@ }; name = Debug; }; - C75F0BC2D434672300000044 /* Debug */ = { + C75F0BC2D434672300000042 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -6863,7 +6707,7 @@ }; name = Debug; }; - C75F0BC2D434672300000045 /* Debug */ = { + C75F0BC2D434672300000043 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -6876,7 +6720,7 @@ }; name = Debug; }; - C75F0BC2D434672300000046 /* Debug */ = { + C75F0BC2D434672300000044 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -6889,7 +6733,7 @@ }; name = Debug; }; - C75F0BC2D434672300000047 /* Debug */ = { + C75F0BC2D434672300000045 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -6902,7 +6746,7 @@ }; name = Debug; }; - C75F0BC2D434672300000048 /* Debug */ = { + C75F0BC2D434672300000046 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -6915,7 +6759,7 @@ }; name = Debug; }; - C75F0BC2D434672300000049 /* Debug */ = { + C75F0BC2D434672300000047 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -6928,7 +6772,7 @@ }; name = Debug; }; - C75F0BC2D43467230000004A /* Debug */ = { + C75F0BC2D434672300000048 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -6941,7 +6785,7 @@ }; name = Debug; }; - C75F0BC2D43467230000004B /* Debug */ = { + C75F0BC2D434672300000049 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -6954,7 +6798,7 @@ }; name = Debug; }; - C75F0BC2D43467230000004C /* Debug */ = { + C75F0BC2D43467230000004A /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -6968,7 +6812,7 @@ }; name = Debug; }; - C75F0BC2D43467230000004D /* Debug */ = { + C75F0BC2D43467230000004B /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -6982,7 +6826,7 @@ }; name = Debug; }; - C75F0BC2D43467230000004E /* Debug */ = { + C75F0BC2D43467230000004C /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -6995,7 +6839,7 @@ }; name = Debug; }; - C75F0BC2D43467230000004F /* Debug */ = { + C75F0BC2D43467230000004D /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7008,7 +6852,7 @@ }; name = Debug; }; - C75F0BC2D434672300000050 /* Debug */ = { + C75F0BC2D43467230000004E /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7021,7 +6865,7 @@ }; name = Debug; }; - C75F0BC2D434672300000051 /* Debug */ = { + C75F0BC2D43467230000004F /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7034,7 +6878,7 @@ }; name = Debug; }; - C75F0BC2D434672300000052 /* Debug */ = { + C75F0BC2D434672300000050 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7047,7 +6891,7 @@ }; name = Debug; }; - C75F0BC2D434672300000053 /* Debug */ = { + C75F0BC2D434672300000051 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7060,7 +6904,7 @@ }; name = Debug; }; - C75F0BC2D434672300000054 /* Debug */ = { + C75F0BC2D434672300000052 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -7074,7 +6918,7 @@ }; name = Debug; }; - C75F0BC2D434672300000055 /* Debug */ = { + C75F0BC2D434672300000053 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -7088,7 +6932,7 @@ }; name = Debug; }; - C75F0BC2D434672300000056 /* Debug */ = { + C75F0BC2D434672300000054 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7101,7 +6945,7 @@ }; name = Debug; }; - C75F0BC2D434672300000057 /* Debug */ = { + C75F0BC2D434672300000055 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7114,7 +6958,7 @@ }; name = Debug; }; - C75F0BC2D434672300000058 /* Debug */ = { + C75F0BC2D434672300000056 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7127,7 +6971,7 @@ }; name = Debug; }; - C75F0BC2D434672300000059 /* Debug */ = { + C75F0BC2D434672300000057 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7140,7 +6984,7 @@ }; name = Debug; }; - C75F0BC2D43467230000005A /* Debug */ = { + C75F0BC2D434672300000058 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7153,7 +6997,7 @@ }; name = Debug; }; - C75F0BC2D43467230000005B /* Debug */ = { + C75F0BC2D434672300000059 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7166,7 +7010,7 @@ }; name = Debug; }; - C75F0BC2D43467230000005C /* Debug */ = { + C75F0BC2D43467230000005A /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7179,7 +7023,7 @@ }; name = Debug; }; - C75F0BC2D43467230000005D /* Debug */ = { + C75F0BC2D43467230000005B /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7192,7 +7036,7 @@ }; name = Debug; }; - C75F0BC2D43467230000005E /* Debug */ = { + C75F0BC2D43467230000005C /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = "Stub Launch Image"; @@ -7305,118 +7149,6 @@ /* Begin XCConfigurationList section */ D31CF1F503CB892C00000000 /* Build configuration list for PBXNativeTarget "_idx_split_vector_calculator_73890910_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C75F0BC2D434672300000053 /* Debug */, - C75F0BC2D33FB0ED00000053 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - D31CF1F50421972E00000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_op_resolver_E63A3714_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C75F0BC2D434672300000032 /* Debug */, - C75F0BC2D33FB0ED00000032 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - D31CF1F507002AA600000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C75F0BC2D434672300000047 /* Debug */, - C75F0BC2D33FB0ED00000047 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - D31CF1F5073F4E6E00000000 /* Build configuration list for PBXNativeTarget "_idx_util_66001351_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C75F0BC2D434672300000004 /* Debug */, - C75F0BC2D33FB0ED00000004 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - D31CF1F50931EF1C00000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C75F0BC2D434672300000044 /* Debug */, - C75F0BC2D33FB0ED00000044 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - D31CF1F50DE3243100000000 /* Build configuration list for PBXNativeTarget "_idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C75F0BC2D434672300000050 /* Debug */, - C75F0BC2D33FB0ED00000050 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - D31CF1F50FD9148A00000000 /* Build configuration list for PBXNativeTarget "_idx_transpose_conv_bias_94247583_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C75F0BC2D434672300000034 /* Debug */, - C75F0BC2D33FB0ED00000034 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - D31CF1F5108ED90400000000 /* Build configuration list for PBXNativeTarget "_idx_math_661952D5_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C75F0BC2D434672300000017 /* Debug */, - C75F0BC2D33FB0ED00000017 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - D31CF1F51CCE08FA00000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C75F0BC2D434672300000014 /* Debug */, - C75F0BC2D33FB0ED00000014 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - D31CF1F51D5FFF0A00000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_detections_calculator_B4C99DEA_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C75F0BC2D434672300000055 /* Debug */, - C75F0BC2D33FB0ED00000055 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - D31CF1F523E0E87900000000 /* Build configuration list for PBXNativeTarget "_idx_core_core-ios_731E135C_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C75F0BC2D434672300000015 /* Debug */, - C75F0BC2D33FB0ED00000015 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - D31CF1F5240434D500000000 /* Build configuration list for PBXNativeTarget "_idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C75F0BC2D43467230000000B /* Debug */, - C75F0BC2D33FB0ED0000000B /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - D31CF1F5260C68A100000000 /* Build configuration list for PBXNativeTarget "_idx_op_resolver_29CCF89E_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C75F0BC2D43467230000004E /* Debug */, - C75F0BC2D33FB0ED0000004E /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - D31CF1F5294E870200000000 /* Build configuration list for PBXNativeTarget "_idx_gl_calculator_helper_6AE62265_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C75F0BC2D434672300000025 /* Debug */, - C75F0BC2D33FB0ED00000025 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - D31CF1F52A49F50200000000 /* Build configuration list for PBXNativeTarget "_idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( C75F0BC2D434672300000051 /* Debug */, @@ -7424,23 +7156,7 @@ ); defaultConfigurationIsVisible = 0; }; - D31CF1F52B54149500000000 /* Build configuration list for PBXNativeTarget "_idx_OlaFaceUnityLibrary_63B2D14F_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C75F0BC2D434672300000021 /* Debug */, - C75F0BC2D33FB0ED00000021 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - D31CF1F52BE3F25400000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_op_resolver_E63A3714_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C75F0BC2D434672300000036 /* Debug */, - C75F0BC2D33FB0ED00000036 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - D31CF1F52E2F18FB00000000 /* Build configuration list for PBXNativeTarget "_idx_clip_vector_size_calculator_B472A55B_ios_min11.0" */ = { + D31CF1F50421972E00000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_op_resolver_E63A3714_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( C75F0BC2D434672300000030 /* Debug */, @@ -7448,27 +7164,155 @@ ); defaultConfigurationIsVisible = 0; }; + D31CF1F507002AA600000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C75F0BC2D434672300000045 /* Debug */, + C75F0BC2D33FB0ED00000045 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + D31CF1F5073F4E6E00000000 /* Build configuration list for PBXNativeTarget "_idx_util_66001351_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C75F0BC2D434672300000006 /* Debug */, + C75F0BC2D33FB0ED00000006 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + D31CF1F50931EF1C00000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C75F0BC2D434672300000042 /* Debug */, + C75F0BC2D33FB0ED00000042 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + D31CF1F50DE3243100000000 /* Build configuration list for PBXNativeTarget "_idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C75F0BC2D43467230000004E /* Debug */, + C75F0BC2D33FB0ED0000004E /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + D31CF1F50FD9148A00000000 /* Build configuration list for PBXNativeTarget "_idx_transpose_conv_bias_94247583_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C75F0BC2D434672300000033 /* Debug */, + C75F0BC2D33FB0ED00000033 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + D31CF1F51058894C00000000 /* Build configuration list for PBXNativeTarget "_idx_core_84469CC7_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C75F0BC2D434672300000017 /* Debug */, + C75F0BC2D33FB0ED00000017 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + D31CF1F5108ED90400000000 /* Build configuration list for PBXNativeTarget "_idx_math_661952D5_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C75F0BC2D43467230000001E /* Debug */, + C75F0BC2D33FB0ED0000001E /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + D31CF1F51CCE08FA00000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C75F0BC2D434672300000009 /* Debug */, + C75F0BC2D33FB0ED00000009 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + D31CF1F51D5FFF0A00000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_detections_calculator_B4C99DEA_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C75F0BC2D434672300000053 /* Debug */, + C75F0BC2D33FB0ED00000053 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + D31CF1F5240434D500000000 /* Build configuration list for PBXNativeTarget "_idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C75F0BC2D434672300000018 /* Debug */, + C75F0BC2D33FB0ED00000018 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + D31CF1F5260C68A100000000 /* Build configuration list for PBXNativeTarget "_idx_op_resolver_29CCF89E_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C75F0BC2D43467230000004C /* Debug */, + C75F0BC2D33FB0ED0000004C /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + D31CF1F5294E870200000000 /* Build configuration list for PBXNativeTarget "_idx_gl_calculator_helper_6AE62265_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C75F0BC2D434672300000024 /* Debug */, + C75F0BC2D33FB0ED00000024 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + D31CF1F52A49F50200000000 /* Build configuration list for PBXNativeTarget "_idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C75F0BC2D43467230000004F /* Debug */, + C75F0BC2D33FB0ED0000004F /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + D31CF1F52BE3F25400000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_op_resolver_E63A3714_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C75F0BC2D434672300000034 /* Debug */, + C75F0BC2D33FB0ED00000034 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + D31CF1F52E13CF7C00000000 /* Build configuration list for PBXNativeTarget "_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C75F0BC2D434672300000016 /* Debug */, + C75F0BC2D33FB0ED00000016 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + D31CF1F52E2F18FB00000000 /* Build configuration list for PBXNativeTarget "_idx_clip_vector_size_calculator_B472A55B_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C75F0BC2D43467230000002E /* Debug */, + C75F0BC2D33FB0ED0000002E /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; D31CF1F5382419CD00000000 /* Build configuration list for PBXNativeTarget "_idx_MPPGraphGPUData_DE328030_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000019 /* Debug */, - C75F0BC2D33FB0ED00000019 /* Release */, + C75F0BC2D434672300000008 /* Debug */, + C75F0BC2D33FB0ED00000008 /* Release */, ); defaultConfigurationIsVisible = 0; }; D31CF1F53C8EC2F100000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_util_D57AACFF_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000000F /* Debug */, - C75F0BC2D33FB0ED0000000F /* Release */, + C75F0BC2D434672300000013 /* Debug */, + C75F0BC2D33FB0ED00000013 /* Release */, ); defaultConfigurationIsVisible = 0; }; D31CF1F53DC2F8BB00000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000005B /* Debug */, - C75F0BC2D33FB0ED0000005B /* Release */, + C75F0BC2D434672300000059 /* Debug */, + C75F0BC2D33FB0ED00000059 /* Release */, ); defaultConfigurationIsVisible = 0; }; @@ -7483,104 +7327,104 @@ D31CF1F540FA78C200000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_calculator_77E4634D_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000003C /* Debug */, - C75F0BC2D33FB0ED0000003C /* Release */, + C75F0BC2D43467230000003A /* Debug */, + C75F0BC2D33FB0ED0000003A /* Release */, ); defaultConfigurationIsVisible = 0; }; D31CF1F5426068CB00000000 /* Build configuration list for PBXNativeTarget "_idx_olamodule_common_library_9ADAC3A9_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000000E /* Debug */, - C75F0BC2D33FB0ED0000000E /* Release */, + C75F0BC2D43467230000001F /* Debug */, + C75F0BC2D33FB0ED0000001F /* Release */, ); defaultConfigurationIsVisible = 0; }; D31CF1F5470F13F900000000 /* Build configuration list for PBXNativeTarget "_idx_non_max_suppression_calculator_E0C32C58_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000004C /* Debug */, - C75F0BC2D33FB0ED0000004C /* Release */, + C75F0BC2D43467230000004A /* Debug */, + C75F0BC2D33FB0ED0000004A /* Release */, ); defaultConfigurationIsVisible = 0; }; D31CF1F54D78F78700000000 /* Build configuration list for PBXNativeTarget "_idx_MPPGraphGPUData_DE328030_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000018 /* Debug */, - C75F0BC2D33FB0ED00000018 /* Release */, + C75F0BC2D434672300000002 /* Debug */, + C75F0BC2D33FB0ED00000002 /* Release */, ); defaultConfigurationIsVisible = 0; }; D31CF1F54DC1F93000000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_detections_calculator_B4C99DEA_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000054 /* Debug */, - C75F0BC2D33FB0ED00000054 /* Release */, + C75F0BC2D434672300000052 /* Debug */, + C75F0BC2D33FB0ED00000052 /* Release */, ); defaultConfigurationIsVisible = 0; }; D31CF1F54EEBF9AD00000000 /* Build configuration list for PBXNativeTarget "_idx_resource_util_0C14DDDC_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000046 /* Debug */, - C75F0BC2D33FB0ED00000046 /* Release */, + C75F0BC2D434672300000044 /* Debug */, + C75F0BC2D33FB0ED00000044 /* Release */, ); defaultConfigurationIsVisible = 0; }; D31CF1F5563270AB00000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000012 /* Debug */, - C75F0BC2D33FB0ED00000012 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - D31CF1F5581D203400000000 /* Build configuration list for PBXNativeTarget "_idx_core_core-ios_731E135C_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C75F0BC2D43467230000000A /* Debug */, - C75F0BC2D33FB0ED0000000A /* Release */, + C75F0BC2D43467230000000C /* Debug */, + C75F0BC2D33FB0ED0000000C /* Release */, ); defaultConfigurationIsVisible = 0; }; D31CF1F5584994EA00000000 /* Build configuration list for PBXNativeTarget "_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000005C /* Debug */, - C75F0BC2D33FB0ED0000005C /* Release */, + C75F0BC2D43467230000005A /* Debug */, + C75F0BC2D33FB0ED0000005A /* Release */, ); defaultConfigurationIsVisible = 0; }; D31CF1F55A1A765300000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_renderer_1DCBFDF7_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000023 /* Debug */, - C75F0BC2D33FB0ED00000023 /* Release */, + C75F0BC2D434672300000022 /* Debug */, + C75F0BC2D33FB0ED00000022 /* Release */, ); defaultConfigurationIsVisible = 0; }; D31CF1F55BE97ADA00000000 /* Build configuration list for PBXNativeTarget "_idx_detection_projection_calculator_07107D71_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000003B /* Debug */, - C75F0BC2D33FB0ED0000003B /* Release */, + C75F0BC2D434672300000039 /* Debug */, + C75F0BC2D33FB0ED00000039 /* Release */, ); defaultConfigurationIsVisible = 0; }; D31CF1F567FA510300000000 /* Build configuration list for PBXNativeTarget "_idx_mediapipe_framework_ios_596FA5D1_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000001B /* Debug */, - C75F0BC2D33FB0ED0000001B /* Release */, + C75F0BC2D43467230000000F /* Debug */, + C75F0BC2D33FB0ED0000000F /* Release */, ); defaultConfigurationIsVisible = 0; }; D31CF1F5682B9BD300000000 /* Build configuration list for PBXNativeTarget "_idx_olamodule_common_library_9ADAC3A9_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000003 /* Debug */, - C75F0BC2D33FB0ED00000003 /* Release */, + C75F0BC2D43467230000001A /* Debug */, + C75F0BC2D33FB0ED0000001A /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + D31CF1F569831F3800000000 /* Build configuration list for PBXNativeTarget "_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C75F0BC2D43467230000001B /* Debug */, + C75F0BC2D33FB0ED0000001B /* Release */, ); defaultConfigurationIsVisible = 0; }; @@ -7597,64 +7441,56 @@ D31CF1F5770790E400000000 /* Build configuration list for PBXNativeTarget "_idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000016 /* Debug */, - C75F0BC2D33FB0ED00000016 /* Release */, + C75F0BC2D43467230000001D /* Debug */, + C75F0BC2D33FB0ED0000001D /* Release */, ); defaultConfigurationIsVisible = 0; }; D31CF1F5771C263400000000 /* Build configuration list for PBXNativeTarget "_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000005D /* Debug */, - C75F0BC2D33FB0ED0000005D /* Release */, + C75F0BC2D43467230000005B /* Debug */, + C75F0BC2D33FB0ED0000005B /* Release */, ); defaultConfigurationIsVisible = 0; }; D31CF1F578F47AF400000000 /* Build configuration list for PBXNativeTarget "_idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000041 /* Debug */, - C75F0BC2D33FB0ED00000041 /* Release */, + C75F0BC2D43467230000003F /* Debug */, + C75F0BC2D33FB0ED0000003F /* Release */, ); defaultConfigurationIsVisible = 0; }; D31CF1F57996204C00000000 /* Build configuration list for PBXNativeTarget "_idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000003E /* Debug */, - C75F0BC2D33FB0ED0000003E /* Release */, + C75F0BC2D43467230000003B /* Debug */, + C75F0BC2D33FB0ED0000003B /* Release */, ); defaultConfigurationIsVisible = 0; }; D31CF1F57A35429E00000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000013 /* Debug */, - C75F0BC2D33FB0ED00000013 /* Release */, + C75F0BC2D43467230000000D /* Debug */, + C75F0BC2D33FB0ED0000000D /* Release */, ); defaultConfigurationIsVisible = 0; }; D31CF1F57AD665A800000000 /* Build configuration list for PBXNativeTarget "_idx_op_resolver_29CCF89E_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000004F /* Debug */, - C75F0BC2D33FB0ED0000004F /* Release */, + C75F0BC2D43467230000004D /* Debug */, + C75F0BC2D33FB0ED0000004D /* Release */, ); defaultConfigurationIsVisible = 0; }; D31CF1F57D6EEAA600000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_opencv_1FC75D94_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000040 /* Debug */, - C75F0BC2D33FB0ED00000040 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - D31CF1F58394EFF100000000 /* Build configuration list for PBXNativeTarget "_idx_FaceMeshGPULibrary_61E6B091_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C75F0BC2D434672300000002 /* Debug */, - C75F0BC2D33FB0ED00000002 /* Release */, + C75F0BC2D43467230000003E /* Debug */, + C75F0BC2D33FB0ED0000003E /* Release */, ); defaultConfigurationIsVisible = 0; }; @@ -7669,52 +7505,44 @@ D31CF1F5842E851000000000 /* Build configuration list for PBXNativeTarget "_idx_split_vector_calculator_73890910_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000052 /* Debug */, - C75F0BC2D33FB0ED00000052 /* Release */, + C75F0BC2D434672300000050 /* Debug */, + C75F0BC2D33FB0ED00000050 /* Release */, ); defaultConfigurationIsVisible = 0; }; D31CF1F584850D7B00000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_metal_A1DB3550_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000042 /* Debug */, - C75F0BC2D33FB0ED00000042 /* Release */, + C75F0BC2D434672300000040 /* Debug */, + C75F0BC2D33FB0ED00000040 /* Release */, ); defaultConfigurationIsVisible = 0; }; D31CF1F585DB7B5E00000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000008 /* Debug */, - C75F0BC2D33FB0ED00000008 /* Release */, + C75F0BC2D434672300000005 /* Debug */, + C75F0BC2D33FB0ED00000005 /* Release */, ); defaultConfigurationIsVisible = 0; }; D31CF1F5862CD19300000000 /* Build configuration list for PBXNativeTarget "_idx_begin_loop_calculator_55C0335F_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000002E /* Debug */, - C75F0BC2D33FB0ED0000002E /* Release */, + C75F0BC2D43467230000002C /* Debug */, + C75F0BC2D33FB0ED0000002C /* Release */, ); defaultConfigurationIsVisible = 0; }; D31CF1F58846F13F00000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_renderer_1DCBFDF7_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000002D /* Debug */, - C75F0BC2D33FB0ED0000002D /* Release */, + C75F0BC2D434672300000029 /* Debug */, + C75F0BC2D33FB0ED00000029 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5915544F700000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_loader_6F62D289_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C75F0BC2D434672300000045 /* Debug */, - C75F0BC2D33FB0ED00000045 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - D31CF1F5A618424C00000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalHelper_8A6739B5_ios_min15.5" */ = { + D31CF1F59109BFFD00000000 /* Build configuration list for PBXNativeTarget "_idx_core_84469CC7_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( C75F0BC2D43467230000001C /* Debug */, @@ -7722,67 +7550,83 @@ ); defaultConfigurationIsVisible = 0; }; + D31CF1F5915544F700000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_loader_6F62D289_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C75F0BC2D434672300000043 /* Debug */, + C75F0BC2D33FB0ED00000043 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + D31CF1F5A618424C00000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalHelper_8A6739B5_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C75F0BC2D434672300000011 /* Debug */, + C75F0BC2D33FB0ED00000011 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; D31CF1F5A67AB4C800000000 /* Build configuration list for PBXNativeTarget "_idx_transpose_conv_bias_94247583_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000039 /* Debug */, - C75F0BC2D33FB0ED00000039 /* Release */, + C75F0BC2D434672300000037 /* Debug */, + C75F0BC2D33FB0ED00000037 /* Release */, ); defaultConfigurationIsVisible = 0; }; D31CF1F5A9FB717B00000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000056 /* Debug */, - C75F0BC2D33FB0ED00000056 /* Release */, + C75F0BC2D434672300000054 /* Debug */, + C75F0BC2D33FB0ED00000054 /* Release */, ); defaultConfigurationIsVisible = 0; }; D31CF1F5AB45DADF00000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalHelper_8A6739B5_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000001A /* Debug */, - C75F0BC2D33FB0ED0000001A /* Release */, + C75F0BC2D43467230000000E /* Debug */, + C75F0BC2D33FB0ED0000000E /* Release */, ); defaultConfigurationIsVisible = 0; }; D31CF1F5AC9881C700000000 /* Build configuration list for PBXNativeTarget "_idx_pixel_buffer_pool_util_C139F8B5_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000010 /* Debug */, - C75F0BC2D33FB0ED00000010 /* Release */, + C75F0BC2D43467230000000A /* Debug */, + C75F0BC2D33FB0ED0000000A /* Release */, ); defaultConfigurationIsVisible = 0; }; D31CF1F5AF09680200000000 /* Build configuration list for PBXNativeTarget "_idx_gl_simple_shaders_2CB9CEAD_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000024 /* Debug */, - C75F0BC2D33FB0ED00000024 /* Release */, + C75F0BC2D434672300000023 /* Debug */, + C75F0BC2D33FB0ED00000023 /* Release */, ); defaultConfigurationIsVisible = 0; }; D31CF1F5AFE1395B00000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_calculator_77E4634D_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000003F /* Debug */, - C75F0BC2D33FB0ED0000003F /* Release */, + C75F0BC2D43467230000003D /* Debug */, + C75F0BC2D33FB0ED0000003D /* Release */, ); defaultConfigurationIsVisible = 0; }; D31CF1F5B359006A00000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_overlay_calculator_7772C341_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000028 /* Debug */, - C75F0BC2D33FB0ED00000028 /* Release */, + C75F0BC2D434672300000026 /* Debug */, + C75F0BC2D33FB0ED00000026 /* Release */, ); defaultConfigurationIsVisible = 0; }; D31CF1F5B4E3FF4C00000000 /* Build configuration list for PBXNativeTarget "_idx_max_unpooling_max_pool_argmax_09627F19_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000037 /* Debug */, - C75F0BC2D33FB0ED00000037 /* Release */, + C75F0BC2D434672300000036 /* Debug */, + C75F0BC2D33FB0ED00000036 /* Release */, ); defaultConfigurationIsVisible = 0; }; @@ -7795,56 +7639,56 @@ D31CF1F5B769070700000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000006 /* Debug */, - C75F0BC2D33FB0ED00000006 /* Release */, + C75F0BC2D434672300000003 /* Debug */, + C75F0BC2D33FB0ED00000003 /* Release */, ); defaultConfigurationIsVisible = 0; }; D31CF1F5B8217D6500000000 /* Build configuration list for PBXNativeTarget "_idx_begin_loop_calculator_55C0335F_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000002F /* Debug */, - C75F0BC2D33FB0ED0000002F /* Release */, + C75F0BC2D43467230000002D /* Debug */, + C75F0BC2D33FB0ED0000002D /* Release */, ); defaultConfigurationIsVisible = 0; }; D31CF1F5B89761A500000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_loader_6F62D289_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000048 /* Debug */, - C75F0BC2D33FB0ED00000048 /* Release */, + C75F0BC2D434672300000046 /* Debug */, + C75F0BC2D33FB0ED00000046 /* Release */, ); defaultConfigurationIsVisible = 0; }; D31CF1F5BEDCDC1900000000 /* Build configuration list for PBXNativeTarget "_idx_resource_util_0C14DDDC_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000049 /* Debug */, - C75F0BC2D33FB0ED00000049 /* Release */, + C75F0BC2D434672300000047 /* Debug */, + C75F0BC2D33FB0ED00000047 /* Release */, ); defaultConfigurationIsVisible = 0; }; D31CF1F5C0DCCE1E00000000 /* Build configuration list for PBXNativeTarget "_idx_mediapipe_framework_ios_596FA5D1_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000001D /* Debug */, - C75F0BC2D33FB0ED0000001D /* Release */, + C75F0BC2D434672300000012 /* Debug */, + C75F0BC2D33FB0ED00000012 /* Release */, ); defaultConfigurationIsVisible = 0; }; D31CF1F5C0E3514600000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalUtil_622319D3_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000001E /* Debug */, - C75F0BC2D33FB0ED0000001E /* Release */, + C75F0BC2D434672300000014 /* Debug */, + C75F0BC2D33FB0ED00000014 /* Release */, ); defaultConfigurationIsVisible = 0; }; D31CF1F5C2B47BB900000000 /* Build configuration list for PBXNativeTarget "_idx_max_unpooling_max_pool_argmax_09627F19_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000035 /* Debug */, - C75F0BC2D33FB0ED00000035 /* Release */, + C75F0BC2D434672300000031 /* Debug */, + C75F0BC2D33FB0ED00000031 /* Release */, ); defaultConfigurationIsVisible = 0; }; @@ -7859,28 +7703,62 @@ D31CF1F5C895ABFC00000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_overlay_calculator_7772C341_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000022 /* Debug */, - C75F0BC2D33FB0ED00000022 /* Release */, + C75F0BC2D434672300000020 /* Debug */, + C75F0BC2D33FB0ED00000020 /* Release */, ); defaultConfigurationIsVisible = 0; }; D31CF1F5C9D1E94200000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_opencv_1FC75D94_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000003D /* Debug */, - C75F0BC2D33FB0ED0000003D /* Release */, + C75F0BC2D43467230000003C /* Debug */, + C75F0BC2D33FB0ED0000003C /* Release */, ); defaultConfigurationIsVisible = 0; }; D31CF1F5CB2C76A700000000 /* Build configuration list for PBXNativeTarget "_idx_clip_vector_size_calculator_B472A55B_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000031 /* Debug */, - C75F0BC2D33FB0ED00000031 /* Release */, + C75F0BC2D43467230000002F /* Debug */, + C75F0BC2D33FB0ED0000002F /* Release */, ); defaultConfigurationIsVisible = 0; }; D31CF1F5CD20A9BC00000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C75F0BC2D434672300000056 /* Debug */, + C75F0BC2D33FB0ED00000056 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + D31CF1F5CDECDB0700000000 /* Build configuration list for PBXNativeTarget "_idx_shader_util_209E4ED9_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C75F0BC2D434672300000021 /* Debug */, + C75F0BC2D33FB0ED00000021 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + D31CF1F5D01558D200000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_metal_65084AC7_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C75F0BC2D434672300000048 /* Debug */, + C75F0BC2D33FB0ED00000048 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + D31CF1F5D2B0183C00000000 /* Build configuration list for PBXNativeTarget "mediapipe-render-module-beauty-ios-OlaFaceUnityLibrary" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C75F0BC2D43467230000005C /* Debug */, + C75F0BC2D33FB0ED0000005C /* Release */, + C75F0BC26AFB9FA200000002 /* __TulsiTestRunner_Debug */, + C75F0BC2FEC462CF00000002 /* __TulsiTestRunner_Release */, + ); + defaultConfigurationIsVisible = 0; + }; + D31CF1F5D433B4FA00000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( C75F0BC2D434672300000058 /* Debug */, @@ -7888,65 +7766,63 @@ ); defaultConfigurationIsVisible = 0; }; - D31CF1F5CDECDB0700000000 /* Build configuration list for PBXNativeTarget "_idx_shader_util_209E4ED9_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C75F0BC2D434672300000027 /* Debug */, - C75F0BC2D33FB0ED00000027 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - D31CF1F5CE77D67600000000 /* Build configuration list for PBXNativeTarget "_idx_OlaFaceUnityLibrary_63B2D14F_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C75F0BC2D434672300000020 /* Debug */, - C75F0BC2D33FB0ED00000020 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - D31CF1F5D01558D200000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_metal_65084AC7_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C75F0BC2D43467230000004A /* Debug */, - C75F0BC2D33FB0ED0000004A /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - D31CF1F5D2B0183C00000000 /* Build configuration list for PBXNativeTarget "mediapipe-render-module-beauty-ios-OlaFaceUnityLibrary" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C75F0BC2D43467230000005E /* Debug */, - C75F0BC2D33FB0ED0000005E /* Release */, - C75F0BC26AFB9FA200000002 /* __TulsiTestRunner_Debug */, - C75F0BC2FEC462CF00000002 /* __TulsiTestRunner_Release */, - ); - defaultConfigurationIsVisible = 0; - }; - D31CF1F5D39116C600000000 /* Build configuration list for PBXNativeTarget "_idx_FaceMeshGPULibrary_61E6B091_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C75F0BC2D43467230000000D /* Debug */, - C75F0BC2D33FB0ED0000000D /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - D31CF1F5D433B4FA00000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C75F0BC2D43467230000005A /* Debug */, - C75F0BC2D33FB0ED0000005A /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; D31CF1F5D4B3E68C00000000 /* Build configuration list for PBXNativeTarget "_idx_util_66001351_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000011 /* Debug */, - C75F0BC2D33FB0ED00000011 /* Release */, + C75F0BC2D43467230000000B /* Debug */, + C75F0BC2D33FB0ED0000000B /* Release */, ); defaultConfigurationIsVisible = 0; }; D31CF1F5D6333A3300000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C75F0BC2D434672300000055 /* Debug */, + C75F0BC2D33FB0ED00000055 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + D31CF1F5D6A89A3300000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalUtil_622319D3_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C75F0BC2D434672300000015 /* Debug */, + C75F0BC2D33FB0ED00000015 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + D31CF1F5D6C9910D00000000 /* Build configuration list for PBXNativeTarget "_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C75F0BC2D434672300000035 /* Debug */, + C75F0BC2D33FB0ED00000035 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + D31CF1F5D8B7B51300000000 /* Build configuration list for PBXNativeTarget "_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C75F0BC2D434672300000032 /* Debug */, + C75F0BC2D33FB0ED00000032 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + D31CF1F5DBB222FF00000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_metal_A1DB3550_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C75F0BC2D434672300000041 /* Debug */, + C75F0BC2D33FB0ED00000041 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + D31CF1F5E12C3CB500000000 /* Build configuration list for PBXNativeTarget "_idx_math_661952D5_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C75F0BC2D434672300000019 /* Debug */, + C75F0BC2D33FB0ED00000019 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + D31CF1F5E5FE63D100000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( C75F0BC2D434672300000057 /* Debug */, @@ -7954,99 +7830,51 @@ ); defaultConfigurationIsVisible = 0; }; - D31CF1F5D6A89A3300000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalUtil_622319D3_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C75F0BC2D43467230000001F /* Debug */, - C75F0BC2D33FB0ED0000001F /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - D31CF1F5D6C9910D00000000 /* Build configuration list for PBXNativeTarget "_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C75F0BC2D434672300000038 /* Debug */, - C75F0BC2D33FB0ED00000038 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - D31CF1F5D8B7B51300000000 /* Build configuration list for PBXNativeTarget "_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C75F0BC2D434672300000033 /* Debug */, - C75F0BC2D33FB0ED00000033 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - D31CF1F5DBB222FF00000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_metal_A1DB3550_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C75F0BC2D434672300000043 /* Debug */, - C75F0BC2D33FB0ED00000043 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - D31CF1F5E12C3CB500000000 /* Build configuration list for PBXNativeTarget "_idx_math_661952D5_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C75F0BC2D43467230000000C /* Debug */, - C75F0BC2D33FB0ED0000000C /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - D31CF1F5E5FE63D100000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C75F0BC2D434672300000059 /* Debug */, - C75F0BC2D33FB0ED00000059 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; D31CF1F5EE7EDAB300000000 /* Build configuration list for PBXNativeTarget "_idx_image_properties_calculator_gpu_service_941BB6CA_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000026 /* Debug */, - C75F0BC2D33FB0ED00000026 /* Release */, + C75F0BC2D434672300000025 /* Debug */, + C75F0BC2D33FB0ED00000025 /* Release */, ); defaultConfigurationIsVisible = 0; }; D31CF1F5F0D47DA200000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000005 /* Debug */, - C75F0BC2D33FB0ED00000005 /* Release */, + C75F0BC2D434672300000004 /* Debug */, + C75F0BC2D33FB0ED00000004 /* Release */, ); defaultConfigurationIsVisible = 0; }; D31CF1F5F0E99D4C00000000 /* Build configuration list for PBXNativeTarget "_idx_gl_simple_shaders_2CB9CEAD_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000029 /* Debug */, - C75F0BC2D33FB0ED00000029 /* Release */, + C75F0BC2D434672300000028 /* Debug */, + C75F0BC2D33FB0ED00000028 /* Release */, ); defaultConfigurationIsVisible = 0; }; D31CF1F5F37A159900000000 /* Build configuration list for PBXNativeTarget "_idx_shader_util_209E4ED9_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000002C /* Debug */, - C75F0BC2D33FB0ED0000002C /* Release */, + C75F0BC2D434672300000027 /* Debug */, + C75F0BC2D33FB0ED00000027 /* Release */, ); defaultConfigurationIsVisible = 0; }; D31CF1F5F41F3C3600000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_metal_65084AC7_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000004B /* Debug */, - C75F0BC2D33FB0ED0000004B /* Release */, + C75F0BC2D434672300000049 /* Debug */, + C75F0BC2D33FB0ED00000049 /* Release */, ); defaultConfigurationIsVisible = 0; }; D31CF1F5F6AC550300000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_util_D57AACFF_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000009 /* Debug */, - C75F0BC2D33FB0ED00000009 /* Release */, + C75F0BC2D434672300000010 /* Debug */, + C75F0BC2D33FB0ED00000010 /* Release */, ); defaultConfigurationIsVisible = 0; }; @@ -8063,16 +7891,16 @@ D31CF1F5F90A485C00000000 /* Build configuration list for PBXNativeTarget "_idx_detection_projection_calculator_07107D71_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000003A /* Debug */, - C75F0BC2D33FB0ED0000003A /* Release */, + C75F0BC2D434672300000038 /* Debug */, + C75F0BC2D33FB0ED00000038 /* Release */, ); defaultConfigurationIsVisible = 0; }; D31CF1F5FC74391300000000 /* Build configuration list for PBXNativeTarget "_idx_non_max_suppression_calculator_E0C32C58_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000004D /* Debug */, - C75F0BC2D33FB0ED0000004D /* Release */, + C75F0BC2D43467230000004B /* Debug */, + C75F0BC2D33FB0ED0000004B /* Release */, ); defaultConfigurationIsVisible = 0; }; diff --git a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/xcshareddata/xcschemes/OlaFaceUnityFramework.xcscheme b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/xcshareddata/xcschemes/OlaFaceUnityFramework.xcscheme index bf4bf11c2..098a6116e 100644 --- a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/xcshareddata/xcschemes/OlaFaceUnityFramework.xcscheme +++ b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/xcshareddata/xcschemes/OlaFaceUnityFramework.xcscheme @@ -2,26 +2,26 @@ - - + + - + - + - + - + - + - + diff --git a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/xcshareddata/xcschemes/_idx_Scheme.xcscheme b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/xcshareddata/xcschemes/_idx_Scheme.xcscheme index 687b346fa..220903477 100644 --- a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/xcshareddata/xcschemes/_idx_Scheme.xcscheme +++ b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/xcshareddata/xcschemes/_idx_Scheme.xcscheme @@ -2,597 +2,591 @@ - - - - - + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - + + - - + + - - + + - - + + - - + + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - - + + - - + + - - + + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - + - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - - + + - - + + + + + - + - - + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + \ No newline at end of file diff --git a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/xcshareddata/xcschemes/mediapipe-render-module-beauty-ios-OlaFaceUnityLibrary.xcscheme b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/xcshareddata/xcschemes/mediapipe-render-module-beauty-ios-OlaFaceUnityLibrary.xcscheme index c1937e011..1c64bfe82 100644 --- a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/xcshareddata/xcschemes/mediapipe-render-module-beauty-ios-OlaFaceUnityLibrary.xcscheme +++ b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/xcshareddata/xcschemes/mediapipe-render-module-beauty-ios-OlaFaceUnityLibrary.xcscheme @@ -1,27 +1,27 @@ - + - - + + - + - + - + - + - + - +